我正在尝试将多个密度图与叠加图结合起来。ggplot 和 geom_density 可以完成这项工作,但密度是相互叠加的。
ggplot(all.complete, aes(x=humid_temp)) +
geom_density(aes(group=height, colour=height, fill=height.f, alpha=0.1)) +
guides(fill = guide_legend(override.aes = list(colour = NULL))) +
labs(main="Temperature by Height", x="Temperature", y="Density")
与此类似的事情是我想要实现的:
在我的情况下,岁月将被身高取代。
谢谢!!!