如何在R中绘制堆积柱形图?

发布于 2024-08-05 07:47:26 字数 70 浏览 4 评论 0原文

有谁知道如何使用 R 绘制由超过 1 个变量堆叠的列的直方图?就像excel中的“堆积柱形图”一样。

谢谢你!

does anyone know how to use R to plot a histogram with the columns stacked up by more than 1 variables? Like the "stacked column" graph in excel.

Thank you!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

以酷 2024-08-12 07:47:26

我假设您确实想要一个条形图而不是直方图。在这种情况下,标准图形中的 barplot 或lattice 包中的 barchart 都可以做到这一点。或者使用 ggplot,如 此示例此处

I'm assuming you really want a bar chart rather than a histogram. In that case, barplot from standard graphics or barchart from the lattice package will both do it. Or use ggplot as shown in this example or here

失而复得 2024-08-12 07:47:26

例如;

ht1=c(0.3,0.7)
ht2=c(0.4,0.6)
barplot(cbind(ht1,ht2))

For example;

ht1=c(0.3,0.7)
ht2=c(0.4,0.6)
barplot(cbind(ht1,ht2))
聽兲甴掵 2024-08-12 07:47:26

xtsExtra 包中还有 barplot.xts

There is also barplot.xts in the xtsExtra package.

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