我有一个数据框,它由 3 列组成:时间、A、B。我设法在一个图中绘制(A 和 B)VS 时间。我想计算 A、B 的移动平均值并将其绘制在同一张图上。我发现了类似的问题,但是,它是针对单个数据的。我遵循了相同的步骤,但我无法将 A 和 B 的移动平均值组合在同一张图上以使其成为倍数。
我的数据框示例:
time,A,B
0.122096,1,0
0.207928,9,0
0.300415,17,30
0.400383,30,60
0.503295,26,50
0.606207,24,70
1.05641,7,50
1.066232,1,56
1.068054,1,60
1.072752,1,76
1.107066,5,30
1.209493,16,40
1.301466,33,50
我的代码:
require(reshape2)
require(ggplot2)
library(zoo)
df<-read.csv("DATA.csv")
temp.zoo<-zoo(df$time,df$A)
temp2.zoo<-zoo(df$time,df$B)
m.av<-rollmean(temp.zoo,10)
df$A.av=coredata(m.av)
m2.av<-rollmean(temp2.zoo,10)
df$B.av=coredata(m2.av)
p<-ggplot(dat = melt(df, id.var="time"), aes(x=time, y=value, color = variable)) +
geom_line(size=0.6) +
// the above line is graphing the two columns(A and B ) VS time .
geom_line(aes(x=df$time,y=df$A.av),color="black") +
geom_line(aes(x=df$time,y=df$B.av),color="grey")
print(p)
不知道我错过了什么?有什么建议吗?