I have daily time series data (date Vs rainfall). I would like to list maximum daily rainfall for each year (27 years). With which.max i can return only one daily max rainfall value for the whole (27 years) time series. Can anybody suggest a better way of doing this? I tried:
> head(dt)
date pcp
1 1987-01-01 2
2 1987-01-02 0.6
3 1987-01-03 0
.
.
.
. 2013-12-31 0.6
> dates <- as.Date(dt$date,"%Y/%m/%d")
> rain <- zoo(dt$pcp, dates)
> ndx = which.max(rain)
> dmax = rain[ndx,]
> dmax
1999-04-05
269.2