├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ ├── check-standard.yaml │ └── test-coverage.yaml ├── .gitignore ├── DESCRIPTION ├── NAMESPACE ├── NEWS.md ├── R ├── RcppExports.R └── roll.R ├── README.md ├── inst └── include │ ├── roll.h │ ├── roll_mat.h │ └── roll_vec.h ├── man ├── figures │ └── logo.png ├── roll-package.Rd ├── roll_all.Rd ├── roll_any.Rd ├── roll_cor.Rd ├── roll_cov.Rd ├── roll_crossprod.Rd ├── roll_idxmax.Rd ├── roll_idxmin.Rd ├── roll_lm.Rd ├── roll_max.Rd ├── roll_mean.Rd ├── roll_median.Rd ├── roll_min.Rd ├── roll_prod.Rd ├── roll_quantile.Rd ├── roll_scale.Rd ├── roll_sd.Rd ├── roll_sum.Rd └── roll_var.Rd ├── roll.Rproj ├── src ├── Makevars ├── Makevars.win ├── RcppExports.cpp ├── init.c └── roll.cpp └── tests ├── testthat.R └── testthat ├── helper-data.R ├── helper-zoo.R ├── test-roll.R └── test-zoo.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonjfoster/roll/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/check-standard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonjfoster/roll/HEAD/.github/workflows/check-standard.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonjfoster/roll/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonjfoster/roll/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonjfoster/roll/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonjfoster/roll/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonjfoster/roll/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/RcppExports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonjfoster/roll/HEAD/R/RcppExports.R -------------------------------------------------------------------------------- /R/roll.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonjfoster/roll/HEAD/R/roll.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonjfoster/roll/HEAD/README.md -------------------------------------------------------------------------------- /inst/include/roll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonjfoster/roll/HEAD/inst/include/roll.h -------------------------------------------------------------------------------- /inst/include/roll_mat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonjfoster/roll/HEAD/inst/include/roll_mat.h -------------------------------------------------------------------------------- /inst/include/roll_vec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonjfoster/roll/HEAD/inst/include/roll_vec.h -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonjfoster/roll/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/roll-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonjfoster/roll/HEAD/man/roll-package.Rd -------------------------------------------------------------------------------- /man/roll_all.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonjfoster/roll/HEAD/man/roll_all.Rd -------------------------------------------------------------------------------- /man/roll_any.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonjfoster/roll/HEAD/man/roll_any.Rd -------------------------------------------------------------------------------- /man/roll_cor.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonjfoster/roll/HEAD/man/roll_cor.Rd -------------------------------------------------------------------------------- /man/roll_cov.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonjfoster/roll/HEAD/man/roll_cov.Rd -------------------------------------------------------------------------------- /man/roll_crossprod.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonjfoster/roll/HEAD/man/roll_crossprod.Rd -------------------------------------------------------------------------------- /man/roll_idxmax.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonjfoster/roll/HEAD/man/roll_idxmax.Rd -------------------------------------------------------------------------------- /man/roll_idxmin.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonjfoster/roll/HEAD/man/roll_idxmin.Rd -------------------------------------------------------------------------------- /man/roll_lm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonjfoster/roll/HEAD/man/roll_lm.Rd -------------------------------------------------------------------------------- /man/roll_max.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonjfoster/roll/HEAD/man/roll_max.Rd -------------------------------------------------------------------------------- /man/roll_mean.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonjfoster/roll/HEAD/man/roll_mean.Rd -------------------------------------------------------------------------------- /man/roll_median.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonjfoster/roll/HEAD/man/roll_median.Rd -------------------------------------------------------------------------------- /man/roll_min.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonjfoster/roll/HEAD/man/roll_min.Rd -------------------------------------------------------------------------------- /man/roll_prod.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonjfoster/roll/HEAD/man/roll_prod.Rd -------------------------------------------------------------------------------- /man/roll_quantile.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonjfoster/roll/HEAD/man/roll_quantile.Rd -------------------------------------------------------------------------------- /man/roll_scale.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonjfoster/roll/HEAD/man/roll_scale.Rd -------------------------------------------------------------------------------- /man/roll_sd.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonjfoster/roll/HEAD/man/roll_sd.Rd -------------------------------------------------------------------------------- /man/roll_sum.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonjfoster/roll/HEAD/man/roll_sum.Rd -------------------------------------------------------------------------------- /man/roll_var.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonjfoster/roll/HEAD/man/roll_var.Rd -------------------------------------------------------------------------------- /roll.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonjfoster/roll/HEAD/roll.Rproj -------------------------------------------------------------------------------- /src/Makevars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonjfoster/roll/HEAD/src/Makevars -------------------------------------------------------------------------------- /src/Makevars.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonjfoster/roll/HEAD/src/Makevars.win -------------------------------------------------------------------------------- /src/RcppExports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonjfoster/roll/HEAD/src/RcppExports.cpp -------------------------------------------------------------------------------- /src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonjfoster/roll/HEAD/src/init.c -------------------------------------------------------------------------------- /src/roll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonjfoster/roll/HEAD/src/roll.cpp -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonjfoster/roll/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/helper-data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonjfoster/roll/HEAD/tests/testthat/helper-data.R -------------------------------------------------------------------------------- /tests/testthat/helper-zoo.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonjfoster/roll/HEAD/tests/testthat/helper-zoo.R -------------------------------------------------------------------------------- /tests/testthat/test-roll.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonjfoster/roll/HEAD/tests/testthat/test-roll.R -------------------------------------------------------------------------------- /tests/testthat/test-zoo.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonjfoster/roll/HEAD/tests/testthat/test-zoo.R --------------------------------------------------------------------------------