I'm reading caret documentation here.
I've used method cv in the past for cross validation, but in this case I'd like to use a simple split of 90% training and 10% hold out for testing.
I suppose I could do folds = 1 but wondered if there's a prescribed way of doing this within caret?
Within the documentation the parameters available for method within trainControl() are given as:
The resampling method: boot, boot632, cv, repeatedcv, LOOCV, LGOCV (for repeated training/test splits), none (only fits one model to the entire training set), oob (only for random forest, bagged trees, bagged earth, bagged flexible discriminant analysis, or conditional tree forest models), "adaptive_cv", "adaptive_boot" or "adaptive_LGOCV"
But I'm not sure what these mean. Maybe one of them would be the one I need?