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
Add plots to evaluation script and look at the results between the truth and forecasts
Might be worth seeing the difference that #112 makes
The text was updated successfully, but these errors were encountered:
Something like this, but would be good to get each forecast on its own plot
import pandas as pd import plotly.graph_objects as go df = pd.read_csv('results.csv') df.set_index('timestamp',inplace=True) # sort by timestamp df.sort_index(inplace=True) traces = [] traces.append(go.Scatter(x=df.index, y=df['forecast_power'],name='forecast')) traces.append(go.Scatter(x=df.index, y=df['generation_power'], name='generation')) fig = go.Figure(data=traces) fig.show(renderer='browser')
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Add plots to evaluation script and look at the results between the truth and forecasts
Might be worth seeing the difference that #112 makes
The text was updated successfully, but these errors were encountered: