modelinfo | R Documentation |
Display information about models supplied by the MachineShop package.
modelinfo(...)
... |
model functions, function names, or objects; observed responses for which to display information. If none are specified, information is returned on all available models by default. |
List of named model elements each containing the following components:
character descriptor for the model.
character vector of source packages required to use the
model. These need only be installed with the
install.packages
function or by equivalent means; but need
not be loaded with, for example, the library
function.
character vector of response variable types supported by the model.
logical value or vector of the same length as
response_types
indicating whether case weights are supported for
the responses.
closure with the argument names and corresponding default values of the model function.
logical indicating whether automatic generation of tuning parameter grids is implemented for the model.
logical indicating whether model-specific variable importance is defined.
## All models
modelinfo()
## Models by response types
names(modelinfo(factor(0)))
names(modelinfo(factor(0), numeric(0)))
## Model-specific information
modelinfo(GBMModel)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.