如何在R中绘制堆积柱形图?
有谁知道如何使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我假设您确实想要一个条形图而不是直方图。在这种情况下,标准图形中的
barplot
或lattice 包中的barchart
都可以做到这一点。或者使用 ggplot,如 此示例 或 此处I'm assuming you really want a bar chart rather than a histogram. In that case,
barplot
from standard graphics orbarchart
from the lattice package will both do it. Or use ggplot as shown in this example or here例如;
For example;
xtsExtra
包中还有barplot.xts
。There is also
barplot.xts
in thextsExtra
package.