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
order = 0
The following code is expected to preserve the B,C,A order of original sequence but in reality produces A,B,C sequence of facets:
data = dict( cat = ["B", "C", "A"], c = ["blue", "cyan", "gray"] ) p = (ggplot(data) + geom_point(aes(color="c"), size=15) + scale_color_identity() + theme_void() + ggsize(400, 200) + facet_wrap("cat", ncol=3, order=0) ) p
When saving this plot to PNG, the picture is correct!
ggsave(p, "facet_ordering_issue.png")
Saving plot to svg or pdf also produces picture with correct B,C,A order of facets. However, saving plot to html produces unexpected A,B,C ordering.
The text was updated successfully, but these errors were encountered:
868a23c
alshan
No branches or pull requests
The following code is expected to preserve the B,C,A order of original sequence but in reality produces A,B,C sequence of facets:
When saving this plot to PNG, the picture is correct!
Saving plot to svg or pdf also produces picture with correct B,C,A order of facets.
However, saving plot to html produces unexpected A,B,C ordering.
The text was updated successfully, but these errors were encountered: