Skip to content

SmoothTrend in OpenAir

2 messages · David Doyle, Clint Bowman

#
I was able to get the plot by converting the dates in the "date" column to 
dates, e.g.,

mytable<-read.csv("MCNP-pH.csv")
newdate<-with(mytable,strptime(date,"%m/%d/%Y"))
mytable$date<-newdate
smoothTrend(mytable, pollutant = "pH")

Clint Bowman			INTERNET:	clint at ecy.wa.gov
Air Quality Modeler		INTERNET:	clint at math.utah.edu
Department of Ecology		VOICE:		(360) 407-6815
PO Box 47600			FAX:		(360) 407-7534
Olympia, WA 98504-7600

         USPS:           PO Box 47600, Olympia, WA 98504-7600
         Parcels:        300 Desmond Drive, Lacey, WA 98503-1274
On Thu, 19 Apr 2012, David Doyle wrote: