Created
September 15, 2020 12:20
-
-
Save avisheknag17/059b89394c8b3d4237bd2aa5b8007a61 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 pmdarima.arima import auto_arima | |
auto_model = auto_arima(Y_train.to_numpy(), exogenous=X_train.to_numpy(), m=2, seasonal=True, | |
suppress_warnings = True, | |
step_wise=True, trace=True) | |
auto_model.summary() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment