time-series-analysis-with-SARIMAX-and-Prophet icon indicating copy to clipboard operation
time-series-analysis-with-SARIMAX-and-Prophet copied to clipboard

This repository introduces some basics on time series. It also presents ARIMA models and its variants as well as the Facebook Prophet forecasting model.

Results 1 time-series-analysis-with-SARIMAX-and-Prophet issues
Sort by recently updated
recently updated
newest added

`df_store_2_item_28 = df_store_2[['date','sales']][df_store_2['item']==1].reset_index(drop=True) df_store_2_item_28.head()` @dpbac In above line of code you are trying to visualize the sales of item 1 at store 2. But in fact item 28 has maximum...