import hvplot.pandas # noqa from bokeh.sampledata.degrees import data data.tail() data.hvplot.area(x='Year', y='Computer Science', label='% of Computer Science Degrees Earned by Women', ylim=(0, 100), width=500, height=400).opts(bgcolor='goldenrod') import pandas as pd from bokeh.sampledata.stocks import MSFT df = pd.DataFrame(MSFT) df['date'] = pd.to_datetime(df.date) df.head() df[df.date.dt.year == 2000].hvplot.area(x='date', y='low', y2='high') df.hvplot.area(x='date', y=['open', 'close']) df.hvplot.area(x='date', y=['open', 'close'], stacked=False, groupby='date.year', legend='bottom_right', width=500)