├── .Rbuildignore ├── .gitignore ├── .travis.yml ├── DESCRIPTION ├── LICENSE.md ├── Makefile ├── NAMESPACE ├── R ├── compat-purrr.R ├── compat-vctrs.R ├── data.R ├── funs-na-rle.R ├── funs-na.R ├── mists-package.R ├── mists-rle-na.R ├── plot.R ├── polish.R ├── reexports.R └── utils.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── codecov.yml ├── data-raw ├── Definition-Source.csv ├── wdi.R └── world-development-indicators.csv ├── data └── wdi.rda ├── inst └── WORDLIST ├── man ├── figures │ ├── README-layerplot-1.png │ ├── README-rangeplot-1.png │ └── README-spinoplot-1.png ├── layer_na_rle.Rd ├── mists-na-helpers.Rd ├── mists-na-rle-tbl.Rd ├── mists-package.Rd ├── mists-plot.Rd ├── mists-polish-auto.Rd ├── mists-polish.Rd ├── mists-set-op.Rd ├── na-rle.Rd ├── na_polish_metrics.Rd ├── na_rle_cut.Rd ├── na_rle_shift.Rd ├── reexports.Rd ├── vctrs-compat.Rd └── wdi.Rd ├── mists.Rproj ├── tests ├── spelling.R ├── testthat.R └── testthat │ ├── test-list-of-na-rle.R │ ├── test-na-fun.R │ ├── test-na-rle-fun.R │ ├── test-na-rle.R │ └── test-polish.R └── tic.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earowang/mists/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .Rproj.user 3 | cache/ 4 | docs/ 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earowang/mists/HEAD/.travis.yml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earowang/mists/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earowang/mists/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earowang/mists/HEAD/Makefile -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earowang/mists/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/compat-purrr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earowang/mists/HEAD/R/compat-purrr.R -------------------------------------------------------------------------------- /R/compat-vctrs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earowang/mists/HEAD/R/compat-vctrs.R -------------------------------------------------------------------------------- /R/data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earowang/mists/HEAD/R/data.R -------------------------------------------------------------------------------- /R/funs-na-rle.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earowang/mists/HEAD/R/funs-na-rle.R -------------------------------------------------------------------------------- /R/funs-na.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earowang/mists/HEAD/R/funs-na.R -------------------------------------------------------------------------------- /R/mists-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earowang/mists/HEAD/R/mists-package.R -------------------------------------------------------------------------------- /R/mists-rle-na.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earowang/mists/HEAD/R/mists-rle-na.R -------------------------------------------------------------------------------- /R/plot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earowang/mists/HEAD/R/plot.R -------------------------------------------------------------------------------- /R/polish.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earowang/mists/HEAD/R/polish.R -------------------------------------------------------------------------------- /R/reexports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earowang/mists/HEAD/R/reexports.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earowang/mists/HEAD/R/utils.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earowang/mists/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earowang/mists/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earowang/mists/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earowang/mists/HEAD/codecov.yml -------------------------------------------------------------------------------- /data-raw/Definition-Source.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earowang/mists/HEAD/data-raw/Definition-Source.csv -------------------------------------------------------------------------------- /data-raw/wdi.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earowang/mists/HEAD/data-raw/wdi.R -------------------------------------------------------------------------------- /data-raw/world-development-indicators.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earowang/mists/HEAD/data-raw/world-development-indicators.csv -------------------------------------------------------------------------------- /data/wdi.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earowang/mists/HEAD/data/wdi.rda -------------------------------------------------------------------------------- /inst/WORDLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earowang/mists/HEAD/inst/WORDLIST -------------------------------------------------------------------------------- /man/figures/README-layerplot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earowang/mists/HEAD/man/figures/README-layerplot-1.png -------------------------------------------------------------------------------- /man/figures/README-rangeplot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earowang/mists/HEAD/man/figures/README-rangeplot-1.png -------------------------------------------------------------------------------- /man/figures/README-spinoplot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earowang/mists/HEAD/man/figures/README-spinoplot-1.png -------------------------------------------------------------------------------- /man/layer_na_rle.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earowang/mists/HEAD/man/layer_na_rle.Rd -------------------------------------------------------------------------------- /man/mists-na-helpers.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earowang/mists/HEAD/man/mists-na-helpers.Rd -------------------------------------------------------------------------------- /man/mists-na-rle-tbl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earowang/mists/HEAD/man/mists-na-rle-tbl.Rd -------------------------------------------------------------------------------- /man/mists-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earowang/mists/HEAD/man/mists-package.Rd -------------------------------------------------------------------------------- /man/mists-plot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earowang/mists/HEAD/man/mists-plot.Rd -------------------------------------------------------------------------------- /man/mists-polish-auto.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earowang/mists/HEAD/man/mists-polish-auto.Rd -------------------------------------------------------------------------------- /man/mists-polish.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earowang/mists/HEAD/man/mists-polish.Rd -------------------------------------------------------------------------------- /man/mists-set-op.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earowang/mists/HEAD/man/mists-set-op.Rd -------------------------------------------------------------------------------- /man/na-rle.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earowang/mists/HEAD/man/na-rle.Rd -------------------------------------------------------------------------------- /man/na_polish_metrics.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earowang/mists/HEAD/man/na_polish_metrics.Rd -------------------------------------------------------------------------------- /man/na_rle_cut.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earowang/mists/HEAD/man/na_rle_cut.Rd -------------------------------------------------------------------------------- /man/na_rle_shift.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earowang/mists/HEAD/man/na_rle_shift.Rd -------------------------------------------------------------------------------- /man/reexports.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earowang/mists/HEAD/man/reexports.Rd -------------------------------------------------------------------------------- /man/vctrs-compat.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earowang/mists/HEAD/man/vctrs-compat.Rd -------------------------------------------------------------------------------- /man/wdi.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earowang/mists/HEAD/man/wdi.Rd -------------------------------------------------------------------------------- /mists.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earowang/mists/HEAD/mists.Rproj -------------------------------------------------------------------------------- /tests/spelling.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earowang/mists/HEAD/tests/spelling.R -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earowang/mists/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-list-of-na-rle.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earowang/mists/HEAD/tests/testthat/test-list-of-na-rle.R -------------------------------------------------------------------------------- /tests/testthat/test-na-fun.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earowang/mists/HEAD/tests/testthat/test-na-fun.R -------------------------------------------------------------------------------- /tests/testthat/test-na-rle-fun.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earowang/mists/HEAD/tests/testthat/test-na-rle-fun.R -------------------------------------------------------------------------------- /tests/testthat/test-na-rle.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earowang/mists/HEAD/tests/testthat/test-na-rle.R -------------------------------------------------------------------------------- /tests/testthat/test-polish.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earowang/mists/HEAD/tests/testthat/test-polish.R -------------------------------------------------------------------------------- /tic.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/earowang/mists/HEAD/tic.R --------------------------------------------------------------------------------