36.2k views
0 votes
Split the Emissions_df into two DataFrames, one containing only countries and the other containing only regions. Name these Emissions_C_df and Emissions_R_df respectively. Hint: You may want to inspect the file WDICountry. csv for this task. Region country codes may be found by looking at null values of the Region column in WDICountry.

1 Answer

4 votes

Final answer:

To split the Emissions_df into two DataFrames, one containing only countries and the other containing only regions, you can use the information from the file WDICountry.csv.

Step-by-step explanation:

To split the Emissions_df into two DataFrames, one containing only countries and the other containing only regions, you can use the information from the file WDICountry.csv. To split the Emissions_df into two DataFrames, one containing only countries and the other containing only regions, you can use the information from the file WDICountry.csv.

First, you need to inspect the Region column in WDICountry and find the null values. These null values represent the regions. You can use the null values to filter the Emissions_df and create two new DataFrames, Emissions_C_df for countries and Emissions_R_df for regions.

User Kasmira
by
7.7k points