Skip to content
New issue

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

Error in graph legend labels. #1410

Closed
directivetech opened this issue Sep 17, 2024 · 1 comment
Closed

Error in graph legend labels. #1410

directivetech opened this issue Sep 17, 2024 · 1 comment

Comments

@directivetech
Copy link

In docs/notebooks/introduction_with_fxdata.ipynb, should the labels "Price" and "Forecast" of the graph in Step 23 be swapped?

ax1 = price.plot(color='blue', grid=True, label='Forecast')
ax2 = ewmac.plot(color='red', grid=True, secondary_y=True, label='Price')

should be:

ax1 = price.plot(color='blue', grid=True, label='Price')
ax2 = ewmac.plot(color='red', grid=True, secondary_y=True, label='Forecast')

@bug-or-feature
Copy link
Collaborator

Fixed by #1447

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants