Skip to contents

The pull_modeltime_model() and pluck_modeltime_model() functions are synonymns.

Usage

pluck_modeltime_model(object, .model_id)

# S3 method for mdl_time_tbl
pluck_modeltime_model(object, .model_id)

pull_modeltime_model(object, .model_id)

Arguments

object

A Modeltime Table

.model_id

A numeric value matching the .model_id that you want to update

See also

Examples


m750_models %>%
    pluck_modeltime_model(2)
#> ══ Workflow [trained] ══════════════════════════════════════════════════════════
#> Preprocessor: Recipe
#> Model: prophet_reg()
#> 
#> ── Preprocessor ────────────────────────────────────────────────────────────────
#> 6 Recipe Steps
#> 
#> • step_timeseries_signature()
#> • step_rm()
#> • step_normalize()
#> • step_dummy()
#> • step_fourier()
#> • step_rm()
#> 
#> ── Model ───────────────────────────────────────────────────────────────────────
#> PROPHET Model
#> - growth: 'linear'
#> - n.changepoints: 25
#> - changepoint.range: 0.8
#> - yearly.seasonality: 'auto'
#> - weekly.seasonality: 'auto'
#> - daily.seasonality: 'auto'
#> - seasonality.mode: 'additive'
#> - changepoint.prior.scale: 0.05
#> - seasonality.prior.scale: 10
#> - holidays.prior.scale: 10
#> - logistic_cap: NULL
#> - logistic_floor: NULL
#> - extra_regressors: 0