79133664

Date: 2024-10-28 13:50:12
Score: 1
Natty:
Report link
auto_model = AutoARIMA(....)
fitted_model = auto_model.fit(train['y'])

# The parameters
p, q, P, Q, m, d, D = fitted_model.model_['arma']
# use them as inputs in a ARIMA model
auto_model_saved = ARIMA(order=(p, d, q), seasonal_order=(P, D, Q), season_length = m)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: mr.K