我有一些看起来像这样的数据:
> head(taus)
date window tau
1 2009-04-16 1 1
2 1994-09-13 1 3
3 2011-07-22 1 2
4 2003-09-05 1 1
5 2000-11-01 1 2
6 2008-02-12 1 1
有固定数量的窗口。我可以这样看待它:
ggplot(data=taus, aes(x=tau))
+ stat_bin(binwidth=10,col="black")
+ facet_wrap(~ window, ncol=4)
但是有没有办法将所有图表放在一个图表上,为每个窗口赋予不同的颜色,并使它们透明以便我可以看到它们?