python中Bokeh怎么用?

美女程序员鼓励师

 

Bokeh是可以实现交互式数据可视化的,是一款交互式可视化库,能够在浏览器上进行展示,经常为大型的数据集提供交互式图表,如果大家了解并不是很深入,那么接下来从各个方面为大家展示使用技巧,下面就让我们一起来了解下实现方式,感兴趣的小伙伴就可以跟着小编一起来学习下啦~

安装

conda install bokeh

pip install bokeh

实例使用:

from bokeh.plotting import figure, output_notebook, show 

% matplotlib inline

x = [1, 2, 3, 4, 5]

y = [6, 7, 2, 4, 5]

output_notebook()

p = figure(title="simple line example", x_axis_label='x', y_axis_label='y')

p.line(x, y, legend="Temp.", line_width=2)

show(p)

输出结果:

 

好啦,Bokeh的使用介绍到此就全部结束了,大家感兴趣的话,可以多尝试使用下哦~

以上是 python中Bokeh怎么用? 的全部内容, 来源链接: utcz.com/z/542849.html

回到顶部