Learn R Programming

MachineShop (version 3.3.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, ...)

Arguments

object

model specification from the parsnip package.

...

tuning parameters with which to update object.

Value

ParsnipModel class object that inherits from MLModel.

See Also

as.MLModel, fit, resample

Examples

Run this code
# NOT RUN {
## 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)
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab