TrendPoly {greenbrown} | R Documentation |
The function computes a trend based on a 4th order polynomial function.
TrendPoly(Yt, ...)
Yt |
univariate time series of class |
... |
additional arguments (currently not used) |
The function returns a list of class "Trend".
Matthias Forkel <matthias.forkel@geo.tuwien.ac.at> [aut, cre]
# load a time series of NDVI (normalized difference vegetation index) data(ndvi) plot(ndvi) # calculate trend on mean annual NDVI values trd <- TrendPoly(ndvi) trd plot(trd)