Skip to content

Commit

Permalink
fix save charts in example
Browse files Browse the repository at this point in the history
  • Loading branch information
nick-gorman committed Feb 15, 2022
1 parent 473873a commit 90969c6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/all_features_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@
fig.update_xaxes(title="Time")
fig.update_yaxes(title="Price ($/MWh)")
fig.update_layout(yaxis_range=[0.0, 100.0], title="QLD Region Price")
fig.write_image('charts/full_featured_market_qld_prices.png')
fig.write_image('full_featured_market_qld_prices.png')
fig.show()

con.close()
Expand Down
2 changes: 1 addition & 1 deletion examples/recreating_historical_dispatch.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@
fig.update_xaxes(title="Time")
fig.update_yaxes(title="Price ($/MWh)")
fig.update_layout(yaxis_range=[0.0, 100.0], title="QLD Region Price")
fig.write_image('charts/energy_market_only_qld_prices.png')
fig.write_image('energy_market_only_qld_prices.png')
fig.show()

print(outputs)
Expand Down

0 comments on commit 90969c6

Please sign in to comment.