我尝试了所有三个后端,但未显示任何图形。一个例子是:
!pip install -q holoviews
import holoviews as hv
from holoviews import opts
hv.extension('matplotlib')
# build a dataset where multiple columns measure the same thing
stamp = [.33, .33, .34, .37, .37, .37, .37, .39, .41, .42,
.44, .44, .44, .45, .46, .49, .49]
postcard = [.20, .20, .21, .23, .23, .23, .23, .24, .26, .27,
.28, .28, .29, .32, .33, .34, .35]
group = "U.S. Postage Rates (1999-2015)"
stamp = hv.Curve(stamp, vdims='Rate per ounce', label='stamp', group=group)
postcard = hv.Curve(postcard, vdims='Rate per ounce', label='postcard', group=group)
postage = (stamp * postcard)
postage.opts(
opts.Curve(interpolation='steps-mid', linestyle=hv.Cycle(values=['--', '-'])),
opts.Overlay(legend_position='top_left'))
代码可以运行,但不会在结果中绘制任何图形。
答案 0 :(得分:3)
您需要在Jupyter笔记本之外使用matplotlib渲染器,操作如下:mr = hv.renderer('matplotlib') mr.show(curve)
工作版本: https://colab.research.google.com/drive/1CrfBZsTzYjf3NpwQJ1VwjQ_Eq1cjMBpe
var x
散景:
!pip install -q holoviews
import holoviews as hv
from holoviews import opts
hv.extension('matplotlib')
# build a dataset where multiple columns measure the same thing
stamp = [.33, .33, .34, .37, .37, .37, .37, .39, .41, .42,
.44, .44, .44, .45, .46, .49, .49]
postcard = [.20, .20, .21, .23, .23, .23, .23, .24, .26, .27,
.28, .28, .29, .32, .33, .34, .35]
group = "U.S. Postage Rates (1999-2015)"
stamp = hv.Curve(stamp, vdims='Rate per ounce', label='stamp', group=group)
postcard = hv.Curve(postcard, vdims='Rate per ounce', label='postcard', group=group)
postage = (stamp * postcard)
postage.opts(
opts.Curve(interpolation='steps-mid', linestyle=hv.Cycle(values=['--', '-'])),
opts.Overlay(legend_position='top_left'))
mr = hv.renderer('matplotlib')
mr.show(postage)
答案 1 :(得分:0)