This message was deleted.
# general
s
This message was deleted.
k
This is probably because there is a check for
isinstance(int)
but these are
nump.int64.
You can fix this by casting d, q, and p to int.
arima_p = [int(x) for x in np.arange(3)]
💯 1
c
That's right, thank you!