
Last chance! 50% off unlimited learning
Sale ends in
Convert a model specification from the parsnip package to one that can be used with the MachineShop package.
ParsnipModel(object, ...)
ParsnipModel
class object that inherits from MLModel
.
model specification from the parsnip package.
tuning parameters with which to update object
.
as.MLModel
, fit
, resample
# \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