Bars Economic#

Download this notebook from GitHub (right-click to download).


Most examples work across multiple plotting backends, this example is also available for:

import pandas as pd
import holoviews as hv
from holoviews import opts
hv.extension('bokeh','matplotlib')

Declaring data#

macro_df = pd.read_csv('http://assets.holoviews.org/macro.csv', delimiter='\t')
key_dimensions   = [('year', 'Year'), ('country', 'Country')]
value_dimensions = [('unem', 'Unemployment'), ('capmob', 'Capital Mobility'),
                    ('gdp', 'GDP Growth'), ('trade', 'Trade')]
macro = hv.Table(macro_df, key_dimensions, value_dimensions)

Plot#

bars = macro.to.bars(['Year', 'Country'], 'Trade', [])
bars.opts(
    opts.Bars(color=hv.Cycle('Category20'), show_legend=False, stacked=True, 
              tools=['hover'], width=600, xrotation=90))
This web page was generated from a Jupyter notebook and not all interactivity will work on this website. Right click to download and run locally for full Python-backed interactivity.

Download this notebook from GitHub (right-click to download).