Skip to content

Instantly share code, notes, and snippets.

@dpbac
Created June 23, 2021 11:08
Show Gist options
  • Save dpbac/9576edddd10c58f4f1f6e0c964e6c948 to your computer and use it in GitHub Desktop.
Save dpbac/9576edddd10c58f4f1f6e0c964e6c948 to your computer and use it in GitHub Desktop.
from statsmodels.tsa.statespace.sarimax import SARIMAX
# just an example
model = SARIMAX(df_store_2_item_28_time, order=(1,1,1), freq='D')
results = model.fit()
# statistics of the model
results.summary()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment