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
Using pandas 0.17.1 with matplotlib 1.5:
import pandas as pd import matplotlib.pyplot as plt plt.style.use('ggplot') data = pd.DataFrame({'1': [1, 2, 3], '2': [3, 5, 1]}) data.plot(kind='bar') plt.savefig('test.png', dpi=300)
Results in
Which uses the colors of matplotlibs default style, not of ggplot.
ggplot
Using matplotlib 1.4.3 the correct colors are used:
The text was updated successfully, but these errors were encountered:
Duplicate of #11614 and fixed by #11865
Sorry, something went wrong.
Thanks.
No branches or pull requests
Using pandas 0.17.1 with matplotlib 1.5:
Results in
Which uses the colors of matplotlibs default style, not of
ggplot
.Using matplotlib 1.4.3 the correct colors are used:

The text was updated successfully, but these errors were encountered: