I am trying to calculate a plot as shown in the left hand side of the picture below which is a time series plot. I managed to create the plot using the timePlot command using "openair" package. I am now trying to add a Cumulative sum line on the same plot same plot which is the red line on the right hand side plot. I am not sure how to do that and I am just wondering If anyone could kindly advise me any steps that I could take to plot a line with Cumulative sum in the same left hand side plot?
(Please ignore any other feature on the right had side plot, all I am interested is to plot the red cumulative sum line in the same left hand side plot)
I would really appreciate any of your kind advise.
Many thanks,
Ayan
These are my sample codes to read data and create the plots at the left hand side:
library("openair")
data = importAURN(site= "MY1", year = 2001:2005, pollutant= "nox") ## import data
## timeplot with monthly mean
timePlot(data, pollutant = "nox",avg.time = "month",smooth = T,ci=F, date.breaks = 5)
This is the example I am trying to achieve, I am trying to add the red cumulative sum line from the right hand side graph to the same time series graph on the left had side:

plotandlinesorggplot? – Carl Witthoft Aug 10 '12 at 17:58