-
-
Save dpbac/9576edddd10c58f4f1f6e0c964e6c948 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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