├── .Rbuildignore ├── .github ├── .gitignore ├── dependabot.yml └── workflows │ ├── R-CMD-check.yaml │ ├── pkgdown.yaml │ └── rhub.yaml ├── .gitignore ├── CAST.Rproj ├── DESCRIPTION ├── NAMESPACE ├── NEWS.md ├── R ├── CAST-package.R ├── CreateSpacetimeFolds.R ├── aoa.R ├── bss.R ├── clustered_sample.R ├── cookfarm.R ├── errorProfiles.R ├── ffs.R ├── geodist.R ├── global_validation.R ├── knndm.R ├── nndm.R ├── normalize_DI.R ├── plot.R ├── print.R ├── splotdata.R └── trainDI.R ├── README.md ├── _pkgdown.yml ├── data-raw └── create-splotdata.R ├── data ├── cookfarm.rda └── splotdata.rda ├── inst └── extdata │ ├── bioclim.tif │ ├── predictors_2012-03-25.tif │ └── predictors_chile.tif ├── man ├── CAST.Rd ├── CreateSpacetimeFolds.Rd ├── aoa.Rd ├── bss.Rd ├── clustered_sample.Rd ├── cookfarm.Rd ├── errorProfiles.Rd ├── ffs.Rd ├── figures │ ├── CAST_workflow.png │ └── logo.png ├── geodist.Rd ├── global_validation.Rd ├── knndm.Rd ├── nndm.Rd ├── normalize_DI.Rd ├── plot.Rd ├── print.Rd ├── splotdata.Rd └── trainDI.Rd ├── tests ├── testthat.R └── testthat │ ├── test-aoa.R │ ├── test-errorProfiles.R │ ├── test-fss.R │ ├── test-geodist.R │ ├── test-global_validation.R │ ├── test-knndm.R │ ├── test-nndm.R │ └── test_trainDI.R └── vignettes ├── cast01-CAST-intro.Rmd ├── cast02-plotgeodist.Rmd ├── cast03-CV.Rmd ├── cast04-AOA-tutorial.Rmd └── cast05-parallel.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.github/workflows/rhub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/.github/workflows/rhub.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/.gitignore -------------------------------------------------------------------------------- /CAST.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/CAST.Rproj -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/CAST-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/R/CAST-package.R -------------------------------------------------------------------------------- /R/CreateSpacetimeFolds.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/R/CreateSpacetimeFolds.R -------------------------------------------------------------------------------- /R/aoa.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/R/aoa.R -------------------------------------------------------------------------------- /R/bss.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/R/bss.R -------------------------------------------------------------------------------- /R/clustered_sample.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/R/clustered_sample.R -------------------------------------------------------------------------------- /R/cookfarm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/R/cookfarm.R -------------------------------------------------------------------------------- /R/errorProfiles.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/R/errorProfiles.R -------------------------------------------------------------------------------- /R/ffs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/R/ffs.R -------------------------------------------------------------------------------- /R/geodist.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/R/geodist.R -------------------------------------------------------------------------------- /R/global_validation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/R/global_validation.R -------------------------------------------------------------------------------- /R/knndm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/R/knndm.R -------------------------------------------------------------------------------- /R/nndm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/R/nndm.R -------------------------------------------------------------------------------- /R/normalize_DI.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/R/normalize_DI.R -------------------------------------------------------------------------------- /R/plot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/R/plot.R -------------------------------------------------------------------------------- /R/print.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/R/print.R -------------------------------------------------------------------------------- /R/splotdata.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/R/splotdata.R -------------------------------------------------------------------------------- /R/trainDI.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/R/trainDI.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /data-raw/create-splotdata.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/data-raw/create-splotdata.R -------------------------------------------------------------------------------- /data/cookfarm.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/data/cookfarm.rda -------------------------------------------------------------------------------- /data/splotdata.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/data/splotdata.rda -------------------------------------------------------------------------------- /inst/extdata/bioclim.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/inst/extdata/bioclim.tif -------------------------------------------------------------------------------- /inst/extdata/predictors_2012-03-25.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/inst/extdata/predictors_2012-03-25.tif -------------------------------------------------------------------------------- /inst/extdata/predictors_chile.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/inst/extdata/predictors_chile.tif -------------------------------------------------------------------------------- /man/CAST.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/man/CAST.Rd -------------------------------------------------------------------------------- /man/CreateSpacetimeFolds.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/man/CreateSpacetimeFolds.Rd -------------------------------------------------------------------------------- /man/aoa.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/man/aoa.Rd -------------------------------------------------------------------------------- /man/bss.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/man/bss.Rd -------------------------------------------------------------------------------- /man/clustered_sample.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/man/clustered_sample.Rd -------------------------------------------------------------------------------- /man/cookfarm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/man/cookfarm.Rd -------------------------------------------------------------------------------- /man/errorProfiles.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/man/errorProfiles.Rd -------------------------------------------------------------------------------- /man/ffs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/man/ffs.Rd -------------------------------------------------------------------------------- /man/figures/CAST_workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/man/figures/CAST_workflow.png -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/geodist.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/man/geodist.Rd -------------------------------------------------------------------------------- /man/global_validation.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/man/global_validation.Rd -------------------------------------------------------------------------------- /man/knndm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/man/knndm.Rd -------------------------------------------------------------------------------- /man/nndm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/man/nndm.Rd -------------------------------------------------------------------------------- /man/normalize_DI.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/man/normalize_DI.Rd -------------------------------------------------------------------------------- /man/plot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/man/plot.Rd -------------------------------------------------------------------------------- /man/print.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/man/print.Rd -------------------------------------------------------------------------------- /man/splotdata.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/man/splotdata.Rd -------------------------------------------------------------------------------- /man/trainDI.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/man/trainDI.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-aoa.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/tests/testthat/test-aoa.R -------------------------------------------------------------------------------- /tests/testthat/test-errorProfiles.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/tests/testthat/test-errorProfiles.R -------------------------------------------------------------------------------- /tests/testthat/test-fss.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/tests/testthat/test-fss.R -------------------------------------------------------------------------------- /tests/testthat/test-geodist.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/tests/testthat/test-geodist.R -------------------------------------------------------------------------------- /tests/testthat/test-global_validation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/tests/testthat/test-global_validation.R -------------------------------------------------------------------------------- /tests/testthat/test-knndm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/tests/testthat/test-knndm.R -------------------------------------------------------------------------------- /tests/testthat/test-nndm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/tests/testthat/test-nndm.R -------------------------------------------------------------------------------- /tests/testthat/test_trainDI.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/tests/testthat/test_trainDI.R -------------------------------------------------------------------------------- /vignettes/cast01-CAST-intro.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/vignettes/cast01-CAST-intro.Rmd -------------------------------------------------------------------------------- /vignettes/cast02-plotgeodist.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/vignettes/cast02-plotgeodist.Rmd -------------------------------------------------------------------------------- /vignettes/cast03-CV.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/vignettes/cast03-CV.Rmd -------------------------------------------------------------------------------- /vignettes/cast04-AOA-tutorial.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/vignettes/cast04-AOA-tutorial.Rmd -------------------------------------------------------------------------------- /vignettes/cast05-parallel.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HannaMeyer/CAST/HEAD/vignettes/cast05-parallel.Rmd --------------------------------------------------------------------------------