geom_area多个绘图错误

时间:2018-05-21 05:41:05

标签: r ggplot2 geom-bar

library(ggplot2)
library(reshape2)
data1 <- seq(1, 300, 3)
data2 <- seq(1, 100, 0.5)
acf1 <- acf(data1, plot = F, lag.max = 25)
acf2 <- acf(data2, plot = F, lag.max = 25)
df<- data.frame(lag = acf1$lag,acf1=acf1$acf,acf2=acf2$acf)
colnames(df)<-c("lag","data1","data2")
data<-melt(df,id="lag")
ggplot(data, aes(x=lag, y=value)) +
geom_area(aes(colour = variable, fill= variable),position="dodge") 

enter image description here

我希望以两种不同的颜色显示两个Acf值,但我无法弄清楚为什么它只显示一种颜色。我该如何解决这个问题?

1 个答案:

答案 0 :(得分:1)

它实际上存在但被data2块隐藏,使用alpha(透明度)来查看它,我也改变了你的闪避选项,如下所示。

ggplot(data, aes(x=lag, y=value)) +
  geom_area(aes(colour = variable, fill= variable),position = position_dodge(width = 0.5), alpha = 0.5)

如果您开始更改position_dodgealpha的宽度,您将会以更好的方式看到这些块。

<强>输出

enter image description here