How do I find whether model type for all models at once? I know how to access this info if I know the algo name, e.g.:
library('Caret')
tail(name(getModelInfo()))
[1] "widekernelpls" "WM" "wsrf" "xgbLinear" "xgbTree"
[6] "xyf"
getModelInfo()$xyf$type
[1] "Classification" "Regression"
How do I see the $type for all the algos in one place?
Look at the help page
?models
. Also, here are some links too.Also: