We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I found that in row 303 of the resultify.py script, there is a reference back to the pe.plot (primary energy) plot in the se (secondary energy) plot.
se = df.filter(**args, variable='Secondary Energy|Electricity|*', region=region) if se: locator = mdates.AutoDateLocator(minticks=10) #locator.intervald['YEARLY'] = [10] pe.plot.bar(ax=ax, stacked=True, title='Power generation mix %s' % region)
In contrast the plot for primary energy looks like this
pe = df.filter(**args, variable='Primary Energy|*', region=region) if pe: locator = mdates.AutoDateLocator(minticks=10) #locator.intervald['YEARLY'] = [10] pe.plot.bar(ax=ax, stacked=True, title='Primary energy mix %s' % region)
Should row 303 be changed to se.plot instead of pe.plot?
The text was updated successfully, but these errors were encountered:
HauHe
No branches or pull requests
I found that in row 303 of the resultify.py script, there is a reference back to the pe.plot (primary energy) plot in the se (secondary energy) plot.
In contrast the plot for primary energy looks like this
Should row 303 be changed to se.plot instead of pe.plot?
The text was updated successfully, but these errors were encountered: