drop_modeltime_model {modeltime} | R Documentation |
Drop a Model from a Modeltime Table
Description
Drop a Model from a Modeltime Table
Usage
drop_modeltime_model(object, .model_id)
Arguments
object |
A Modeltime Table (class |
.model_id |
A numeric value matching the .model_id that you want to drop |
See Also
-
combine_modeltime_tables()
: Combine 2 or more Modeltime Tables together -
add_modeltime_model()
: Adds a new row with a new model to a Modeltime Table -
drop_modeltime_model()
: Drop one or more models from a Modeltime Table -
update_modeltime_description()
: Updates a description for a model inside a Modeltime Table -
update_modeltime_model()
: Updates a model inside a Modeltime Table -
pull_modeltime_model()
: Extracts a model from a Modeltime Table
Examples
library(tidymodels)
m750_models %>%
drop_modeltime_model(.model_id = c(2,3))
[Package modeltime version 1.3.1 Index]