tempcollab
Results
1
comments of
tempcollab
@ChadFulton the above solution doesn't work for the ARIMA model: ``` modelA = sm.tsa.ARIMA(dataset_A, order=(3, 0, 3)) resA = modelA.fit() modelB = sm.tsa.ARIMA(dataset_B, order=(3, 0, 3)) resB = modelB.smooth(resA.params) resB.forecast()...