I have to build a couple of models and validate their stability through 10 fold CV
I have the following code for a logistic regression and nnet for example
mod_fitlog <- train(form, data=x, method="glm", family="binomial",
trControl = ctrl, tuneLength = 5,verbose=T,metric='auc')
mod_fitnnet <- train(form, data=x, method="nnet",preProcess = "range",
trace = FALSE, maxit = 100)
Now i want to extract the results of 10 cv runs , i.e. 10 aucs for each modelling and plot them - basically to judge which model is more stable and which isnt with higher variance .