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
Minimal snippet:
import pandas as pd from numpy.random import randn import matplotlib.pyplot as plt d = pd.DataFrame({'one':randn(5), 'two':randn(5), 'three':randn(5), 'label':['label'] * 5}, columns = ['one','two','three', 'label']) bp= d.boxplot(by='label', rot=45) plt.savefig('xxx.png')
Output produced:
Issue: The label on the left is rotated but the label on the right is not.
Versions: pandas '0.12.0' matplotlib '1.3.1'
The text was updated successfully, but these errors were encountered:
@saffsd if you'd like to submit a PR to correct this would be great.
Sorry, something went wrong.
How about fixing as below?
xticklabels
xlabel
Successfully merging a pull request may close this issue.
Minimal snippet:
Output produced:

Issue:
The label on the left is rotated but the label on the right is not.
Versions:
pandas '0.12.0'
matplotlib '1.3.1'
The text was updated successfully, but these errors were encountered: