Test Readme. f
Last active
January 30, 2021 19:34
-
-
Save robdmc/5a795e497e3ea6e9bf408a1635694067 to your computer and use it in GitHub Desktop.
Holoviews stacked area plot
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
c_list = [] | |
for col in df.columns[1:]: | |
c = hv.Area((df.date, df[col]/1e6), 'Date', 'Active Pipeline ($M)', label=col).opts(color=hv.Cycle('Set1')) | |
c_list.append(c) | |
hv.Area.stack(hv.Overlay(c_list)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment