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
It would be very helpful if DataFrame.plot() function would also provide a legend with column names
The text was updated successfully, but these errors were encountered:
If you call plt.legend() after calling df.plot(), it plots the legend. Might be more useful if it just did this automatically, though
plt.legend()
df.plot()
Sorry, something went wrong.
cf http://pandas.sourceforge.net/visualization.html#basic-plotting-plot
http://pandas.sourceforge.net/visualization.html#basic-plotting-plot
Thanks! Maybe its a good idea to include 'legend' options in df.plot(legend='True') ....
cool. I agree with you-- I'll leave the issue open so I don't forget to do this
I added this in git master-- so it plots a legend by default now but you can also pass legend=False to disable it
legend=False
Fix issue pandas-dev#324 (pandas-dev#325)
cf45000
No branches or pull requests
It would be very helpful if DataFrame.plot() function would also provide a legend with column names
The text was updated successfully, but these errors were encountered: