Metadata-Version: 2.1
Name: fanchart
Version: 1.0.2
Summary: Fan Chart Implementation
Home-page: https://github.com/quantgirluk/fanchart
Author: Dialid Santiago 
Author-email: d.santiago@outlook.com
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

# *fanchart*: Fan Charts Implementation


[![PyPI version fury.io](https://badge.fury.io/py/fanchart.svg)](https://pypi.python.org/pypi/fanchart/)

![PyPI license](https://img.shields.io/pypi/l/fanchart.svg)


Fan charts [Python](https://www.python.org/) implementation.


The term **fan chart** was coined by the [Bank of England](https://www.bankofengland.co.uk/), which has been
using these charts to illustrate its forecasts for inflation since 1996.

The BoE introduced the fan charts aiming to communicate a more accurate representation of their forecast for medium term inflation. In particular, the charts have two key objectives:

- To convey the uncertainty in their forecasts. This is, to focus attention on  the forecast distribution, rather than only on small changes to the central projection.
- To promote discussion of the risks to the economic outlook, and thus contribute to a wider debate about economic policy. Fan charts help to make it clear that monetary policy is about making decisions instead of knowing the exact rate of inflation in two years time.

For more details on the history of fan charts visit [Fan Charts](https://quantgirl.blog/fan-charts/)

This library provides two main functions

| Function    | Parameters                            |
|-------------|---------------------------------------|
| fan _single | loc, sigma, gamma, probs, kind, color |
| fan         | pars, probs, historic, color          |



- The `fan` function illustrates the distribution of all the forecasts available; and it has the option to display the historical values for reference.

![](https://raw.githubusercontent.com/quantgirluk/fanchart/master/images/fan_light.png)


- The `fan_single` function illustrates the pdf/cdf of one forecast distribution

![](https://raw.githubusercontent.com/quantgirluk/fanchart/master/images/single_light.png)

![](https://raw.githubusercontent.com/quantgirluk/fanchart/master/images/single_light_cdf.png)
