Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有谁知道如何使用 R 绘制由多个变量堆叠的列的直方图?就像 excel 中的“堆积柱形”图一样。
谢谢!
我假设你真的想要一个条形图而不是直方图。在这种情况下,barplot从标准图形或barchart从 lattice 包都可以做到这一点。或者使用 ggplot ,如本例或此处所示
barplot
barchart
例如;
ht1=c(0.3,0.7) ht2=c(0.4,0.6) barplot(cbind(ht1,ht2))
包里也有barplot.xts。xtsExtra
barplot.xts
xtsExtra