Reputation: 110267
I am using highcharts to plot the company revenue on a daily basis on a line chart. I am looking to predict the next five weeks of revenue over the holiday season, for example --
Is there a plugin for highcharts that does this? Or, is there an open-source library that can be plugged in (ideally in python) that can be used to predict the next weeks of revenue for this?
Update:
The following two modules seem like good starting places:
Upvotes: 0
Views: 675
Reputation: 225
It seems you are dealing with time-series-analysis and prediction. You could look at the Python library Statsmodels which offers ARMA and ARIMA models straight out of the box.
Upvotes: 1