更改 R/ggplot2 中 True 和 False 的堆栈顺序
当在 ggplot2 中使用 qplot 绘制逻辑值时,False 计数始终位于底部,但通常我希望 True 位于底部,以便更容易阅读。这是一个示例
y<-as.logical(rbinom(100,1,0.7))
x<-factor(rep(letters[1:2], each=50))
qplot(x,fill=y, geom='bar')
如何获得堆栈底部 TRUE 的计数?
When plotting logical values with qplot in ggplot2 the False counts are always on the bottom, but more often than not I want True on the bottom so that it is easier to read. Here is an example
y<-as.logical(rbinom(100,1,0.7))
x<-factor(rep(letters[1:2], each=50))
qplot(x,fill=y, geom='bar')
How can I get the counts for TRUE on the bottom of the stack?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您愿意转换为因子,则可以这样做:
我只需确保保留原始逻辑向量并仅使用该因子进行绘图。很难知道使用该因素代替逻辑因素会对下游产生什么影响。
If you're comfortable converting to a factor, you could do this:
I'd just be sure to keep your original logical vector and only use the factor for plotting. Hard to know what effects using the factor in lieu of the logical could have downstream.