-
Notifications
You must be signed in to change notification settings - Fork 35
Closed
Description
USEEIO/import_emission_factors/gloria_helpers.py
Lines 43 to 55 in 8b4e076
| drop_list = [ | |
| # ('CHL', 'Motor vehicles, trailers and semi-trailers'), | |
| # ('BEL', 'Hard Coal'), | |
| # ('HKG', 'Rubber products'), | |
| # ('HKG', 'Plastic products'), | |
| # ('HKG', 'Quarrying of stone, sand and clay'), | |
| # ('HKG', 'Chemical and fertilizer minerals'), | |
| ('SGP', 'Mining and quarrying n.e.c.; services to mining') | |
| ] | |
| for i in drop_list: | |
| print(f'Dropping outliers for {": ".join(i)}') | |
| M_df = (M_df.query('~(CountryCode == @i[0] and `MRIO Sector` == @i[1])') | |
| .reset_index(drop=True)) |
The dropping of these sectors is not justified anywhere. We need an explanation somewhere.
Reactions are currently unavailable