├── .Rbuildignore ├── .gitignore ├── .travis.yml ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── RcppExports.R ├── accessors.R ├── cpp_wrappers.R ├── loess_stl.R ├── plots.R └── stlplus.R ├── README.md ├── man-roxygen └── ex-stlplus.R ├── man ├── accessors.Rd ├── plot.stlplus.Rd ├── plot_cycle.Rd ├── plot_rembycycle.Rd ├── plot_seasonal.Rd ├── plot_trend.Rd └── stlplus.Rd ├── src ├── RcppExports.cpp ├── interp.cpp ├── loess.cpp └── ma.cpp └── tests ├── testthat.R └── testthat └── tests.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/stlplus/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/stlplus/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: r 2 | sudo: required 3 | -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/stlplus/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/stlplus/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/stlplus/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/stlplus/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/stlplus/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/RcppExports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/stlplus/HEAD/R/RcppExports.R -------------------------------------------------------------------------------- /R/accessors.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/stlplus/HEAD/R/accessors.R -------------------------------------------------------------------------------- /R/cpp_wrappers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/stlplus/HEAD/R/cpp_wrappers.R -------------------------------------------------------------------------------- /R/loess_stl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/stlplus/HEAD/R/loess_stl.R -------------------------------------------------------------------------------- /R/plots.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/stlplus/HEAD/R/plots.R -------------------------------------------------------------------------------- /R/stlplus.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/stlplus/HEAD/R/stlplus.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/stlplus/HEAD/README.md -------------------------------------------------------------------------------- /man-roxygen/ex-stlplus.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/stlplus/HEAD/man-roxygen/ex-stlplus.R -------------------------------------------------------------------------------- /man/accessors.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/stlplus/HEAD/man/accessors.Rd -------------------------------------------------------------------------------- /man/plot.stlplus.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/stlplus/HEAD/man/plot.stlplus.Rd -------------------------------------------------------------------------------- /man/plot_cycle.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/stlplus/HEAD/man/plot_cycle.Rd -------------------------------------------------------------------------------- /man/plot_rembycycle.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/stlplus/HEAD/man/plot_rembycycle.Rd -------------------------------------------------------------------------------- /man/plot_seasonal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/stlplus/HEAD/man/plot_seasonal.Rd -------------------------------------------------------------------------------- /man/plot_trend.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/stlplus/HEAD/man/plot_trend.Rd -------------------------------------------------------------------------------- /man/stlplus.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/stlplus/HEAD/man/stlplus.Rd -------------------------------------------------------------------------------- /src/RcppExports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/stlplus/HEAD/src/RcppExports.cpp -------------------------------------------------------------------------------- /src/interp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/stlplus/HEAD/src/interp.cpp -------------------------------------------------------------------------------- /src/loess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/stlplus/HEAD/src/loess.cpp -------------------------------------------------------------------------------- /src/ma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/stlplus/HEAD/src/ma.cpp -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/stlplus/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/tests.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/stlplus/HEAD/tests/testthat/tests.R --------------------------------------------------------------------------------