├── DESCRIPTION ├── LICENSE.md ├── NAMESPACE ├── R ├── calibrateEB.R └── infinitesimalJackknife.R ├── README.md ├── example.R ├── man ├── calibrateEB.Rd ├── gbayes.Rd ├── gfit.Rd ├── infJack.Rd ├── randomForestInfJack.Rd └── randomForestInfJackMulticlass.Rd ├── randomForestCI.Rproj └── tests ├── testthat.R └── testthat └── test_randomForest.R /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swager/randomForestCI/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swager/randomForestCI/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swager/randomForestCI/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/calibrateEB.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swager/randomForestCI/HEAD/R/calibrateEB.R -------------------------------------------------------------------------------- /R/infinitesimalJackknife.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swager/randomForestCI/HEAD/R/infinitesimalJackknife.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swager/randomForestCI/HEAD/README.md -------------------------------------------------------------------------------- /example.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swager/randomForestCI/HEAD/example.R -------------------------------------------------------------------------------- /man/calibrateEB.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swager/randomForestCI/HEAD/man/calibrateEB.Rd -------------------------------------------------------------------------------- /man/gbayes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swager/randomForestCI/HEAD/man/gbayes.Rd -------------------------------------------------------------------------------- /man/gfit.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swager/randomForestCI/HEAD/man/gfit.Rd -------------------------------------------------------------------------------- /man/infJack.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swager/randomForestCI/HEAD/man/infJack.Rd -------------------------------------------------------------------------------- /man/randomForestInfJack.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swager/randomForestCI/HEAD/man/randomForestInfJack.Rd -------------------------------------------------------------------------------- /man/randomForestInfJackMulticlass.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swager/randomForestCI/HEAD/man/randomForestInfJackMulticlass.Rd -------------------------------------------------------------------------------- /randomForestCI.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swager/randomForestCI/HEAD/randomForestCI.Rproj -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swager/randomForestCI/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test_randomForest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swager/randomForestCI/HEAD/tests/testthat/test_randomForest.R --------------------------------------------------------------------------------