You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Refactor data processing in pipeline.py to standardize column names for renewable and fossil fuel energy consumption. Update visualizations and report generation to reflect these changes, enhancing clarity and consistency in the analysis.
Global Average Renewable Energy Share: {latest_data['Renewable energy consumption (% of total final energy consumption)'].mean():.2f}%
143
+
Global Average Renewable Energy Share: {latest_data['Renewable energy consumption'].mean():.2f}%
143
144
144
145
Top 5 Countries by Renewable Energy Share:
145
146
----------------------------------------
146
-
{latest_data.nlargest(5, 'Renewable energy consumption (% of total final energy consumption)')[['country', 'Renewable energy consumption (% of total final energy consumption)']].to_string()}
147
+
{latest_data.nlargest(5, 'Renewable energy consumption')[['country', 'Renewable energy consumption']].to_string()}
0 commit comments