我有两个不同的数据集,两个都有相同的变量。我想根据直方图中的两个数据集将变量Age
与其密度进行对比,并使用ggplot2
将其叠加以进行比较。
任何线索?
答案 0 :(得分:-1)
我刚刚解决了我的问题。看看吧!
plot1 <- ggplot() +
geom_histogram(aes(x=df1$Age, y=..density..), fill="lightblue") + geom_histogram(aes(x=df2$Age, y=..density..), fill="darkblue")