- x
zoo, xts, data.frame or matrix object, with sub-daily, daily, weekly or monthly time series.
Measurements at several gauging stations can be stored in a data.frame of matrix object, and in that case, each column of x
represent the time series measured in each gauging station, and the column names of x
have to correspond to the ID of each station (starting by a letter).
- season
character, indicating the weather season to be used for selecting the data. Valid values are:
-) DJF : December, January, February
-) MAM : March, April, May
-) JJA : June, July, August
-) SON : September, October, November
-) DJFM: December, January, February, March
-) AM : April, May
-) JJAS: June, July, August, September
-) ON : October, November
- FUN
Function that will be applied to ALL the values of x
belonging to the given weather season (e.g., FUN
can be some of mean
, max
, min
, sd
).
The FUN value for the winter season (DJF or DJFM) is computed considering the consecutive months of December, January and February/March. See 'Note' section.
- na.rm
Logical. Should missing values be removed?
-) TRUE : the seasonal values are computed considering only those values different from NA (very important when FUN=sum
)
-) FALSE: if there is AT LEAST one NA within a weather season, the corresponding seasonal values are NA
- out.fmt
Character indicating the date format for the output time series. See format
in as.Date
. Possible values are:
-) %Y : only the year will be used for the time. Default option. (e.g., "1961" "1962"...)
-) %Y-%m-%d: a complete date format will be used for the time. (e.g., "1961-01-01" "1962-01-01"...)
- dates
numeric, factor or Date object indicating how to obtain the dates.
If dates
is a number (default), it indicates the index of the column in x
that stores the dates
If dates
is a factor, it is converted into Date class, by using the date format specified by date.fmt
If dates
is already of Date class, the code verifies that the number of days on it be equal to the number of elements in x
- date.fmt
Character indicating the format in which the dates are stored in dates, e.g. %Y-%m-%d. See format
in as.Date
.
ONLY required when class(dates)=="factor"
or class(dates)=="numeric"
.
- out.type
Character that defines the desired type of output. Valid values are:
-) data.frame: a data.frame, with as many columns as stations are included in x
, the year corresponding to each seasonal value are used as row names.
-) db : a data.frame, with 4 columns will be produced.
The first column (StationID) stores the ID of the station
The second column (Year) stores the year,
The third column (Season) stores the season,
The fourth column (Value) contains the seasonal value corresponding to the values specified in the previous three columns
- ...
further arguments passed to or from other methods.