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
# Test case to demonstrate alignment issue with axis_text_x # Create a sample DataFrame for testing purposes data = { 'category': ['This is a label', 'Label B', 'C', 'D', 'This is a label E'], 'value': [5, 4, 3, 2, 1] } train = pd.DataFrame(data) # Create bar plot for i in [0, 0.5, 1]: plot = ( ggplot(train, aes(x='category', y='value')) + geom_bar(stat='identity') + ggtitle(f'Sample plot: vjust & hjust = {i}') + theme(axis_text_x=element_text(angle=45, hjust=i, vjust=i)) ) plot.show()
All iterations show up exactly the same
The text was updated successfully, but these errors were encountered:
Related to #1227
Sorry, something went wrong.
MKoroteev-HORIS
No branches or pull requests
All iterations show up exactly the same
The text was updated successfully, but these errors were encountered: