powered by
Returns a time series with the trend removed. The trend can be estimated using polynomial regression or using a lowess fit.
detrend(series, order = 1, lowess = FALSE, lowspan = 2/3)
The detrended series is returned.
The time series to be detrended.
Order of the polynomial used to estimate the trend with a linear default (order=1) unless lowess is TRUE.
lowess
If TRUE, lowess is used to find the trend. The default is FALSE.
The smoother span used for lowess.
D.S. Stoffer
You can find demonstrations of astsa capabilities at FUN WITH ASTSA.
The most recent version of the package can be found at https://github.com/nickpoison/astsa/.
In addition, the News and ChangeLog files are at https://github.com/nickpoison/astsa/blob/master/NEWS.md.
The webpages for the texts and some help on using R for time series analysis can be found at https://nickpoison.github.io/.
trend
tsplot( cbind(salmon, detrend(salmon)), gg=TRUE, main='Norwegian Salmon USD/KG' )
Run the code above in your browser using DataLab