更改 R/ggplot2 中 True 和 False 的堆栈顺序

发布于 2024-10-20 06:39:08 字数 239 浏览 0 评论 0原文

当在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

凝望流年 2024-10-27 06:39:08

如果您愿意转换为因子,则可以这样做:

yf <- factor(y, levels = c("TRUE", "FALSE"))
qplot(x, fill = yf, geom = 'bar')

我只需确保保留原始逻辑向量并仅使用该因子进行绘图。很难知道使用该因素代替逻辑因素会对下游产生什么影响。

If you're comfortable converting to a factor, you could do this:

yf <- factor(y, levels = c("TRUE", "FALSE"))
qplot(x, fill = yf, geom = 'bar')

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文