用R中的ggplot2覆盖直方图

时间:2011-08-05 14:02:24

标签: r ggplot2

我是R的新手,我正在尝试将3个直方图绘制到同一个图表上。 一切都运行正常,但我的问题是你没有看到2个直方图重叠的位置 - 它们看起来相当截止:Histogram

当我制作密度图时,它看起来很完美:每条曲线都被黑色边框线包围,颜色在曲线重叠的地方看起来不同:Density Plot

有人能告诉我第一张照片中的直方图是否能达到类似的效果吗?这是我正在使用的代码:

lowf0 <-read.csv (....)
mediumf0 <-read.csv (....)
highf0 <-read.csv(....)
lowf0$utt<-'low f0'
mediumf0$utt<-'medium f0'
highf0$utt<-'high f0'
histogram<-rbind(lowf0,mediumf0,highf0)
ggplot(histogram, aes(f0, fill = utt)) + geom_histogram(alpha = 0.2)

提前感谢任何有用的提示!

3 个答案:

答案 0 :(得分:204)

使用@joran的样本数据

ggplot(dat, aes(x=xx, fill=yy)) + geom_histogram(alpha=0.2, position="identity")

请注意geom_histogram的默认位置是“堆叠。”

请参阅此页面的“位置调整”:

docs.ggplot2.org/current/geom_histogram.html

答案 1 :(得分:104)

您当前的代码:

ggplot(histogram, aes(f0, fill = utt)) + geom_histogram(alpha = 0.2)

告诉ggplot使用f0中的所有值构建一个直方图,然后根据变量utt为该单个直方图的条形着色。

你想要的是创建三个单独的直方图,使用alpha混合使它们彼此可见。因此,您可能希望对geom_histogram使用三个单独的调用,其中每个调用都有自己的数据框并填充:

ggplot(histogram, aes(f0)) + 
    geom_histogram(data = lowf0, fill = "red", alpha = 0.2) + 
    geom_histogram(data = mediumf0, fill = "blue", alpha = 0.2) +
    geom_histogram(data = highf0, fill = "green", alpha = 0.2) +

以下是一些输出的具体示例:

dat <- data.frame(xx = c(runif(100,20,50),runif(100,40,80),runif(100,0,30)),yy = rep(letters[1:3],each = 100))

ggplot(dat,aes(x=xx)) + 
    geom_histogram(data=subset(dat,yy == 'a'),fill = "red", alpha = 0.2) +
    geom_histogram(data=subset(dat,yy == 'b'),fill = "blue", alpha = 0.2) +
    geom_histogram(data=subset(dat,yy == 'c'),fill = "green", alpha = 0.2)

产生类似这样的东西:

enter image description here

修改错别字;你想要填充,而不是颜色。

答案 2 :(得分:4)

在ggplot2中绘制多个/重叠直方图只需要几条线时,结果并不总是令人满意。必须正确使用边框和颜色,以确保眼睛区分直方图

以下功能可以平衡边界颜色,不透明度和叠加的密度图,以使查看者可以区分分布。

单个直方图

plot_histogram <- function(df, feature) {
    plt <- ggplot(df, aes(x=eval(parse(text=feature)))) +
    geom_histogram(aes(y = ..density..), alpha=0.7, fill="#33AADE", color="black") +
    geom_density(alpha=0.3, fill="red") +
    geom_vline(aes(xintercept=mean(eval(parse(text=feature)))), color="black", linetype="dashed", size=1) +
    labs(x=feature, y = "Density")
    print(plt)
}

多个直方图

plot_multi_histogram <- function(df, feature, label_column) {
    plt <- ggplot(df, aes(x=eval(parse(text=feature)), fill=eval(parse(text=label_column)))) +
    geom_histogram(alpha=0.7, position="identity", aes(y = ..density..), color="black") +
    geom_density(alpha=0.7) +
    geom_vline(aes(xintercept=mean(eval(parse(text=feature)))), color="black", linetype="dashed", size=1) +
    labs(x=feature, y = "Density")
    plt + guides(fill=guide_legend(title=label_column))
}

用法

只需将数据框连同所需参数一起传递给上述函数

plot_histogram(iris, 'Sepal.Width')

enter image description here

plot_multi_histogram(iris, 'Sepal.Width', 'Species')

enter image description here

plot_multi_histogram中的额外参数是包含类别标签的列的名称。

通过创建具有许多不同分配方式的数据框,我们可以更加生动地看到这一点:

a <-data.frame(n=rnorm(1000, mean = 1), category=rep('A', 1000))
b <-data.frame(n=rnorm(1000, mean = 2), category=rep('B', 1000))
c <-data.frame(n=rnorm(1000, mean = 3), category=rep('C', 1000))
d <-data.frame(n=rnorm(1000, mean = 4), category=rep('D', 1000))
e <-data.frame(n=rnorm(1000, mean = 5), category=rep('E', 1000))
f <-data.frame(n=rnorm(1000, mean = 6), category=rep('F', 1000))
many_distros <- do.call('rbind', list(a,b,c,d,e,f))

像以前一样传递数据框(并使用选项扩展图表):

options(repr.plot.width = 20, repr.plot.height = 8)
plot_multi_histogram(many_distros, 'n', 'category')

enter image description here