R ggplot2 introduce slight smoothing to a line graph with only a few datapoints

前端 未结 2 619
滥情空心
滥情空心 2021-02-04 21:59

Not sure if this is a programming question or not...

If I have the data below, which produces a \'spiky\' chart, and I\'d like to produce a slightly smoothed one using g

2条回答
  •  执念已碎
    2021-02-04 22:04

    If you want to avoid losing too much information from the data, below could be a better approach, that works good for large datasets:

    library(zoo)
    library(reshape)
    a$smooth<-rollmean(a$values,3,fill="extend") # 2nd parameter defines smoothness 
    ggplot(melt(a),aes(x=year,y=value,color=variable,group=variable))+geom_line()
    

    enter image description here

    Here is a better example:

    a <- data.frame(year=1:10,values=sin(1:10)+runif(10))
    a$smooth<-rollmean(a$values,3,fill="extend")
    ggplot(melt(a,id.vars="year"),aes(x=year,y=value,color=variable,
          group=variable))+geom_line(size=2)
    

    enter image description here

提交回复
热议问题