I have the daily weather report like this. What I want is to calculate the monthly mean of the max, min and observation temperature and then plot these three lines. I already convert the date format like this:
Date = as.POSIXlt(Weather2011$Date, format = "%m/%d/%Y")
Year = as.numeric(format(Date, format = "%Y"))
Month = as.numeric(format(Date, format = "%m"))
Week = as.numeric(format(Date, format = "%U"))
Weekday = as.numeric(format(Date, format = "%w"))
Weather2011
looks like this:
Date Max.Temp Min.Temp Temp Date Year Month Week Weekday
6/3/2010 87 63 63 2010-06-03 2010 6 22 4
6/4/2010 83 63 73 2010-06-04 2010 6 22 5