I have a model similar to the following, and I am wondering, is there a beautifull and effective way to to plot the folds to show the stability and performance of my model?
data(iris)
df=iris[,1:4]
con = trainControl(method="cv", number=5,savePredictions = TRUE)
for_train = createDataPartition(df$Sepal.Length, p=.70, list=FALSE)
train=df[for_train,]
test=df[-for_train,]
trf_iris = train(Sepal.Length~ .,
data=train,ntree=5000,method="rf",metric="Rsquared",trControl=con,importance = TRUE)
If you run
str(trf_iris)
, you will find thattrf_iris$control$index
contains the lists of row indices for each fold. You can extract them to recreate the five fold subsets and then plot them.You can add
+ facet_wrap(.~Fold)
if you find separating the fold plots look better.