Learn R Programming

caretEnsemble (version 1.0.0)

caretModelSpec: Generate a specification for fitting a caret model

Description

A caret model specificaiton consists of 2 parts: a model (as a string) and the argments to the train call for fitting that model

Usage

caretModelSpec(method = "rf", ...)

Arguments

method
the modeling method to pass to caret::train
...
Other arguments that will eventually be passed to caret::train

Value

  • a list of lists

Examples

Run this code
caretModelSpec('rf', tuneLength=5, preProcess='ica')

Run the code above in your browser using DataLab