Submitted by ng_guardian t3_11or4qb in MachineLearning
TywinASOIAF t1_jbzbm13 wrote
Reply to comment by Toilet_Assassin in [D] Statsmodels ARIMA model predict function not working by ng_guardian
You have to make very weird code in Pandas to handle data on hour intervals (15:00, 16:00, 17:00 etc) with statmodels. In R this is no issue. Convert to tsibble and you are good to go.
Toilet_Assassin t1_jc0gn35 wrote
In the end the observations you feed to the model will boil down to a sequentially indexed array, so it isn't too much effort to map indices to hour intervals with a time column. You will have to extend the time column to match the forecasted indices though, but that isn't too much effort at the end of the day.
Viewing a single comment thread. View all comments