Is there anyway to extract the equation from a mable object?
beer_fit <- aus_production %>%
model(est = ETS(Beer))
formula(beer_fit)
Is there anyway to extract the equation from a mable object?
beer_fit <- aus_production %>%
model(est = ETS(Beer))
formula(beer_fit)
By equation, are you referring to the mathematical equation or model's formula?
Getting a model's mathematical equation is planned: https://github.com/tidyverts/fable/issues/4
Related work for model equations is here: https://github.com/datalorax/equatiomatic
This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.