如何更改 ggplot2 条形图中的堆叠顺序?
来自在线条形图指南:
qplot(factor(cyl), data=mtcars, geom="bar", fill=factor(gear))
如何让 5 个位于底部,4 个位于其上方,3 个位于顶部?
From the online bar chart guide:
qplot(factor(cyl), data=mtcars, geom="bar", fill=factor(gear))
How do I get 5 to sit on the bottom, 4 above that, and 3 on top?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
qplot(factor(cyl), data=mtcars, geom="bar", fill=factor(gear), order = -gear)
qplot(factor(cyl), data=mtcars, geom="bar", fill=factor(gear), order = -gear)
要推广 @xiechao 的解决方案(@hadley 的解决方案在最新的 ggplot 中不起作用),您可以反转因子顺序来实现此目的:
To generalize @xiechao's solution (@hadley's doesn't work in latest ggplot), you can reverse the factor orders to achieve this: