MachineShop (version 3.7.0)

ParsnipModel: Parsnip Model

Description

Convert a model specification from the parsnip package to one that can be used with the MachineShop package.

Usage

ParsnipModel(object, ...)

Value

ParsnipModel class object that inherits from MLModel.

Arguments

object

model specification from the parsnip package.

...

tuning parameters with which to update object.

See Also

as.MLModel, fit, resample

Examples

Run this code
# \donttest{
## Requires prior installation of suggested package parsnip to run

prsp_model <- parsnip::linear_reg(engine = "glmnet")

model <- ParsnipModel(prsp_model, penalty = 1, mixture = 1)
model

model_fit <- fit(sale_amount ~ ., data = ICHomes, model = model)
predict(model_fit)
# }

Run the code above in your browser using DataLab