├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R ├── 632.R └── core.R ├── README.md ├── man ├── naive_cv.Rd ├── nested_cv.Rd └── nested_cv_helper.Rd ├── nestedcv.Rproj └── vignettes ├── .gitignore ├── highd_logistic.Rmd └── highd_logistic_632.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenbates19/nestedcv/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenbates19/nestedcv/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenbates19/nestedcv/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenbates19/nestedcv/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenbates19/nestedcv/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/632.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenbates19/nestedcv/HEAD/R/632.R -------------------------------------------------------------------------------- /R/core.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenbates19/nestedcv/HEAD/R/core.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenbates19/nestedcv/HEAD/README.md -------------------------------------------------------------------------------- /man/naive_cv.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenbates19/nestedcv/HEAD/man/naive_cv.Rd -------------------------------------------------------------------------------- /man/nested_cv.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenbates19/nestedcv/HEAD/man/nested_cv.Rd -------------------------------------------------------------------------------- /man/nested_cv_helper.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenbates19/nestedcv/HEAD/man/nested_cv_helper.Rd -------------------------------------------------------------------------------- /nestedcv.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenbates19/nestedcv/HEAD/nestedcv.Rproj -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/highd_logistic.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenbates19/nestedcv/HEAD/vignettes/highd_logistic.Rmd -------------------------------------------------------------------------------- /vignettes/highd_logistic_632.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephenbates19/nestedcv/HEAD/vignettes/highd_logistic_632.Rmd --------------------------------------------------------------------------------