├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── NAMESPACE ├── R ├── .DS_Store ├── SL_functions.R └── SL_wrappers.R ├── README.md └── man ├── .DS_Store ├── predict.survSL.coxph.Rd ├── predict.survSL.expreg.Rd ├── predict.survSL.gam.Rd ├── predict.survSL.km.Rd ├── predict.survSL.pchreg.Rd ├── predict.survSL.rfsrc.Rd ├── predict.survSuperLearner.Rd ├── survSL.coxph.Rd ├── survSL.expreg.Rd ├── survSL.gam.Rd ├── survSL.km.Rd ├── survSL.pchreg.Rd ├── survSL.rfsrc.Rd ├── survSL.template.Rd ├── survSuperLearner.CV.control.Rd ├── survSuperLearner.Rd ├── survSuperLearner.control.Rd ├── survlistWrappers.Rd ├── survscreen.glmnet.Rd ├── survscreen.marg.Rd └── survscreen.template.Rd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedwestling/survSuperLearner/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedwestling/survSuperLearner/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedwestling/survSuperLearner/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedwestling/survSuperLearner/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedwestling/survSuperLearner/HEAD/R/.DS_Store -------------------------------------------------------------------------------- /R/SL_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedwestling/survSuperLearner/HEAD/R/SL_functions.R -------------------------------------------------------------------------------- /R/SL_wrappers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedwestling/survSuperLearner/HEAD/R/SL_wrappers.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedwestling/survSuperLearner/HEAD/README.md -------------------------------------------------------------------------------- /man/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedwestling/survSuperLearner/HEAD/man/.DS_Store -------------------------------------------------------------------------------- /man/predict.survSL.coxph.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedwestling/survSuperLearner/HEAD/man/predict.survSL.coxph.Rd -------------------------------------------------------------------------------- /man/predict.survSL.expreg.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedwestling/survSuperLearner/HEAD/man/predict.survSL.expreg.Rd -------------------------------------------------------------------------------- /man/predict.survSL.gam.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedwestling/survSuperLearner/HEAD/man/predict.survSL.gam.Rd -------------------------------------------------------------------------------- /man/predict.survSL.km.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedwestling/survSuperLearner/HEAD/man/predict.survSL.km.Rd -------------------------------------------------------------------------------- /man/predict.survSL.pchreg.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedwestling/survSuperLearner/HEAD/man/predict.survSL.pchreg.Rd -------------------------------------------------------------------------------- /man/predict.survSL.rfsrc.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedwestling/survSuperLearner/HEAD/man/predict.survSL.rfsrc.Rd -------------------------------------------------------------------------------- /man/predict.survSuperLearner.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedwestling/survSuperLearner/HEAD/man/predict.survSuperLearner.Rd -------------------------------------------------------------------------------- /man/survSL.coxph.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedwestling/survSuperLearner/HEAD/man/survSL.coxph.Rd -------------------------------------------------------------------------------- /man/survSL.expreg.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedwestling/survSuperLearner/HEAD/man/survSL.expreg.Rd -------------------------------------------------------------------------------- /man/survSL.gam.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedwestling/survSuperLearner/HEAD/man/survSL.gam.Rd -------------------------------------------------------------------------------- /man/survSL.km.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedwestling/survSuperLearner/HEAD/man/survSL.km.Rd -------------------------------------------------------------------------------- /man/survSL.pchreg.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedwestling/survSuperLearner/HEAD/man/survSL.pchreg.Rd -------------------------------------------------------------------------------- /man/survSL.rfsrc.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedwestling/survSuperLearner/HEAD/man/survSL.rfsrc.Rd -------------------------------------------------------------------------------- /man/survSL.template.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedwestling/survSuperLearner/HEAD/man/survSL.template.Rd -------------------------------------------------------------------------------- /man/survSuperLearner.CV.control.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedwestling/survSuperLearner/HEAD/man/survSuperLearner.CV.control.Rd -------------------------------------------------------------------------------- /man/survSuperLearner.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedwestling/survSuperLearner/HEAD/man/survSuperLearner.Rd -------------------------------------------------------------------------------- /man/survSuperLearner.control.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedwestling/survSuperLearner/HEAD/man/survSuperLearner.control.Rd -------------------------------------------------------------------------------- /man/survlistWrappers.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedwestling/survSuperLearner/HEAD/man/survlistWrappers.Rd -------------------------------------------------------------------------------- /man/survscreen.glmnet.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedwestling/survSuperLearner/HEAD/man/survscreen.glmnet.Rd -------------------------------------------------------------------------------- /man/survscreen.marg.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedwestling/survSuperLearner/HEAD/man/survscreen.marg.Rd -------------------------------------------------------------------------------- /man/survscreen.template.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tedwestling/survSuperLearner/HEAD/man/survscreen.template.Rd --------------------------------------------------------------------------------