├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── NEWS ├── R ├── AUC.R ├── ci.cvAUC.R ├── ci.pooled.cvAUC.R ├── cvAUC.R ├── internals.R └── zzz.R ├── README.md ├── data ├── adherence.rda ├── admissions.rda └── datalist └── man ├── AUC.Rd ├── adherence.Rd ├── admissions.Rd ├── ci.cvAUC.Rd ├── ci.pooled.cvAUC.Rd ├── cvAUC-package.Rd └── cvAUC.Rd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledell/cvAUC/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledell/cvAUC/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledell/cvAUC/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledell/cvAUC/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledell/cvAUC/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledell/cvAUC/HEAD/NEWS -------------------------------------------------------------------------------- /R/AUC.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledell/cvAUC/HEAD/R/AUC.R -------------------------------------------------------------------------------- /R/ci.cvAUC.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledell/cvAUC/HEAD/R/ci.cvAUC.R -------------------------------------------------------------------------------- /R/ci.pooled.cvAUC.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledell/cvAUC/HEAD/R/ci.pooled.cvAUC.R -------------------------------------------------------------------------------- /R/cvAUC.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledell/cvAUC/HEAD/R/cvAUC.R -------------------------------------------------------------------------------- /R/internals.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledell/cvAUC/HEAD/R/internals.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledell/cvAUC/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledell/cvAUC/HEAD/README.md -------------------------------------------------------------------------------- /data/adherence.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledell/cvAUC/HEAD/data/adherence.rda -------------------------------------------------------------------------------- /data/admissions.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledell/cvAUC/HEAD/data/admissions.rda -------------------------------------------------------------------------------- /data/datalist: -------------------------------------------------------------------------------- 1 | admissions 2 | adherence 3 | -------------------------------------------------------------------------------- /man/AUC.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledell/cvAUC/HEAD/man/AUC.Rd -------------------------------------------------------------------------------- /man/adherence.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledell/cvAUC/HEAD/man/adherence.Rd -------------------------------------------------------------------------------- /man/admissions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledell/cvAUC/HEAD/man/admissions.Rd -------------------------------------------------------------------------------- /man/ci.cvAUC.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledell/cvAUC/HEAD/man/ci.cvAUC.Rd -------------------------------------------------------------------------------- /man/ci.pooled.cvAUC.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledell/cvAUC/HEAD/man/ci.pooled.cvAUC.Rd -------------------------------------------------------------------------------- /man/cvAUC-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledell/cvAUC/HEAD/man/cvAUC-package.Rd -------------------------------------------------------------------------------- /man/cvAUC.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ledell/cvAUC/HEAD/man/cvAUC.Rd --------------------------------------------------------------------------------