ExponentialSmoothing - What prediction method to use for this date plot?
问题 I currently have these data points of date vs cumulative sum. I want to predict the cumulative sum for future dates using python. What prediction method should I use? My dates series are in this format: ['2020-01-20', '2020-01-24', '2020-01-26', '2020-01-27', '2020-01-30', '2020-01-31'] dtype='datetime64[ns]' I tried spline but seems like spline can't handle date-time series I tried Exponential Smoothing for time series forecasting but the result is incorrect. I don't understand what predict