如何让 ggplot 正确排序构面?
我试图根据从 2 到 14 的变量对 14 个图进行分面。绘图按顺序显示: 10,11,12,13,14,15,2,3,4,5,6,7,8,9
如何让他们订购2-15?
更新:好的,所以我使用 data$var=as.factor(data$var)
将其作为一个因子。 级别是 级别:10 11 12 13 14 15 2 3 4 5 6 7 8 9
如何重新排序?
I am trying to facet about 14 plots based on a variable that runs from 2-14. The plots show up in the order:
10,11,12,13,14,15,2,3,4,5,6,7,8,9
How do I get them to order from 2-15?
update: ok, so I made it a factor using data$var=as.factor(data$var)
.
The Levels areLevels: 10 11 12 13 14 15 2 3 4 5 6 7 8 9
How do I reorder those?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果没有您的数据,我最好的猜测是将您的分面变量转换为一个具有您想要的顺序级别的因子。
Without your data, my best guess would be to turn your faceting variable into a factor that has the levels in the order which you desire.