Bootstrap_LOOCV_LR_AUC {PathoStat} | R Documentation |
Do bootstrap and LOOCV
Bootstrap_LOOCV_LR_AUC(df, targetVec, nboot = 50)
df |
Row is sample, column is feature. Required |
targetVec |
y vector. Required |
nboot |
number of BOOTSTRAP |
bootstrap loocv result dataframe
data('iris') Bootstrap_LOOCV_LR_AUC(iris[,1:4], c(rep(1,100), rep(0,50)), nboot = 3)