Slackbot
08/03/2023, 11:06 AMKevin Kho
08/03/2023, 4:52 PMManuel
08/03/2023, 4:55 PMstepwise=False
(which in my case works fine until I also set max_q=0
)Kevin Kho
08/03/2023, 4:56 PMBartosz Bohaterewicz
08/03/2023, 9:49 PMKevin Kho
08/03/2023, 9:52 PMKevin Kho
08/03/2023, 9:52 PMKevin Kho
08/03/2023, 9:53 PMrange()
alsoKevin Kho
08/03/2023, 9:57 PMManuel
08/03/2023, 10:33 PMKevin Kho
08/03/2023, 10:48 PMManuel
08/03/2023, 10:55 PMfor i in range(max_p + 1):
for j in range(max_q + 1):
for I in range(max_P + 1):
for J in range(max_Q + 1):
if i + j + I + J > max_order:
So that the fit is executed at least 1 time even when one of those parameters is set to zero.Kevin Kho
08/03/2023, 10:56 PMKevin Kho
08/03/2023, 10:57 PMKevin Kho
08/03/2023, 10:58 PMManuel
08/03/2023, 10:59 PMfor (i in 0:max.p) {
for (j in 0:max.q) {
for (I in 0:max.P) {
for (J in 0:max.Q) {
:max.p etc. is inclusive, so you have to add 1 to get the same behavior in PythonKevin Kho
08/03/2023, 11:01 PMManuel
08/03/2023, 11:09 PMKevin Kho
08/04/2023, 1:03 AMManuel
08/04/2023, 8:11 AMKevin Kho
08/04/2023, 1:51 PMMariana Menchero
08/04/2023, 7:26 PM