G Elliot Moris使用移动分布图随着时间的推移显示出政治两极分化。
从这个问题:How to use 'facet' to create multiple density plot in GGPLOT,我设法使用 facet 使用虚拟数据重现类似的图:
library(ggplot2)
set.seed(101)
dtf <- data.frame(variable = c(rnorm(1000),
rnorm(1000) + rep(1:10/2,each =100)),
group = rep(c("a","b"), each = 1000),
year = rep(2001:2010, each=100))
ggplot(dtf) +
geom_density(aes(x = variable, fill = group)) +
facet_grid(year ~.)
但我希望分布与原始图中一样重叠。此类图是否有特定名称,是否可以用 R 重现它们?
[编辑]此全球温度分布图中提供了类似图的动态版本。