Logo HoloViews Menu
  • Discourse
  • Twitter
  • Github
  • Getting started
  • User Guide
  • Gallery
  • Reference Gallery
  • Releases
  • API
  • FAQ
  • Home
  • Getting Started
  • User Guide
  • Reference Gallery
  • Releases
  • API
  • FAQ
  • Roadmap
  • Github source
  • About

Dropdown economic¶

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


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

  • Bokeh - dropdown_economic
In [1]:
import pandas as pd
import holoviews as hv
from holoviews import dim, opts

hv.extension('matplotlib')

Declaring data¶

In [2]:
macro_df = pd.read_csv('http://assets.holoviews.org/macro.csv', '\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¶

In [3]:
gdp_curves = macro.to.curve('Year', 'GDP Growth')
gdp_unem_scatter = macro.to.scatter('Year', ['GDP Growth', 'Unemployment'])
annotations = hv.Arrow(1973, 8, 'Oil Crisis', 'v') * hv.Arrow(1975, 6, 'Stagflation', 'v') *\
hv.Arrow(1979, 8, 'Energy Crisis', 'v') * hv.Arrow(1981.9, 5, 'Early Eighties\n Recession', 'v')

(gdp_curves * gdp_unem_scatter * annotations).opts(
    opts.Curve(color='k'),
    opts.Scatter(color='Unemployment', s=dim('Unemployment')*10, cmap='Blues', edgecolors='k',
                 aspect=2, fig_size=250, show_frame=False))
WARNING:param.ArrowPlot12996: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot13007: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot13018: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot13029: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot12996: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot13007: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot13018: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot13029: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot12996: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot13007: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot13018: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot13029: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot12996: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot13007: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot13018: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot13029: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot12996: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot13007: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot13018: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot13029: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot12996: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot13007: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot13018: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot13029: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot12996: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot13007: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot13018: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot13029: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot12996: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot13007: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot13018: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot13029: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot12996: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot13007: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot13018: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot13029: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot12996: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot13007: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot13018: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot13029: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot12996: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot13007: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot13018: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot13029: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot12996: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot13007: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot13018: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot13029: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot12996: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot13007: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot13018: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot13029: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot12996: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot13007: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot13018: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot13029: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot12996: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot13007: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot13018: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot13029: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot12996: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot13007: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot13018: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot13029: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot12996: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot13007: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot13018: Arrow textsize style option is deprecated, use textsize option instead.
WARNING:param.ArrowPlot13029: Arrow textsize style option is deprecated, use textsize option instead.
Out[3]:

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