使用ggplot2
可以很容易地创建堆叠直方图:
library(ggplot2)
ggplot(data = iris, aes(x = Sepal.Length, fill = Species)) +
geom_histogram(colour = 'white')
ggplot(data = iris, aes(x = Sepal.Length, fill = Species)) +
geom_histogram(colour = 'white', position = 'fill')
我想知道如何仅使用 R基础图形创建两个直方图。