You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
segments=list(
y~1+x,
~0+ ar(1), # start AR(1)~0+ ar(0) # Stop all AR
)
Implementation-wise, the "0" would just set zeros for the involved parameters, e.g., ar_[i_] = 0, i.e., leaving it purely to sigma to model the residuals.
The text was updated successfully, but these errors were encountered:
Turning off would just be changing to 0th order:
Implementation-wise, the "0" would just set zeros for the involved parameters, e.g.,
ar_[i_] = 0
, i.e., leaving it purely tosigma
to model the residuals.The text was updated successfully, but these errors were encountered: