I am working on time series models. I got to use auto_arima model in pyramid-arima module. I have fitted a auto_arima model on my data set. Now I have two questions.
I would like to see the model parameters.
I would like to get fitted values from the model.
Below one is my sample code.
m1_hist = auto_arima(ts1_hist, start_p=1, start_q=1,
max_p=3, max_q=3, m=12,
start_P=0, seasonal=True,
d=1, D=1, trace=True,
error_action='ignore',
suppress_warnings=True,
stepwise=True)
m1_hist2 = m1_hist.fit(ts1_hist)
I used m1_hist.params
to get the model parameters. But it is not showing me the outputs.
Can you please address my questions?
Thanks in advance.