Metadata-Version: 2.1
Name: forecast-tool
Version: 0.0.2
Summary: To easy plot forecasting through ARIMA model
Home-page: https://github.com/k-w-lee/forecast_vis
Author: Morris_Lee
Author-email: info.leekahwin@gmail.com
Project-URL: Bug Tracker, https://github.com/k-w-lee/forecast_vis/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# A package to make forecast visualisation easier

**Objective**: To make forecast visualisation easier and more expressive.

To install the package

```
pip install forecast-tool
```

Let me show you how the package works


## (1) Make a simple forecast using ARIMA model
**Input [1]**:

```python
from forecast_tool import forecast_plot as fp

period = 'm' #[y, m, w, d]

fp.overall_vis(df, date='Date', newtarget='Volume', period,show_model_name=True, numElems=8)
```
