[雪峰磁针石博客]Bokeh数据可视化工具1快速入门

简介: 简介 数据可视化python库参考 python数据可视化库最突出的为Matplotlib、Seaborn和Bokeh。前两个,Matplotlib和Seaborn,绘制静态图。Bokeh可以绘制交互式图。

简介

数据可视化python库参考

python数据可视化库最突出的为Matplotlib、Seaborn和Bokeh。前两个,Matplotlib和Seaborn,绘制静态图。Bokeh可以绘制交互式图。

安装


conda install bokeh

pip2 install bokeh

pip3 install bokeh

检验安装


from bokeh.plotting import figure, output_file, show

#HTML file to output your plot into

output_file("bokeh.html")

#Constructing a basic line plot

x = [1,2,3]

y = [4,5,6]

p = figure()

p.line(x,y)

show(p)

image.png

问题讨论:

https://groups.google.com/a/anaconda.com/forum/#!forum/bokeh

bug跟踪:https://github.com/bokeh/bokeh/issues

应用程序:Bokeh应用程序是在浏览器中运行的Bokeh渲染文档

Glyph:Glyph是Bokeh的基石,它们是线条,圆形,矩形等。

服务器:Bokeh服务器用于共享和发布交互式图表

小部件Widgets::Bokeh中的小部件是滑块,下拉菜单等

输出方法有:output_file('plot.html')和output_notebook()

构建图片的方式:


#Code to construct a figure

from bokeh.plotting import figure

# create a Figure object

p = figure(plot_width=500, plot_height=400, tools="pan,hover")

绘图基础

线状图


#Creating a line plot

#Importing the required packages

from bokeh.io import output_file, show

from bokeh.plotting import figure

#Creating our data arrays used for plotting the line plot

x = [5,6,7,8,9,10]

y = [1,2,3,4,5,6]

#Calling the figure() function to create the figure of the plot

plot = figure()

#Creating a line plot using the line() function

plot.line(x,y)

#Creating markers on our line plot at the location of the intersection between x and y

plot.cross(x,y, size = 15)

#Output the plot

output_file('line_plot.html')

show(plot)

image.png

柱形图


#Creating bar plots

#Importing the required packages

from bokeh.plotting import figure, show, output_file

#Points on the x axis

x = [8,9,10]

#Points on the y axis

y = [1,2,3]

#Creating the figure of the plot

plot = figure()

#Code to create the barplot

plot.vbar(x,top = y, color = "blue", width= 0.5)

#Output the plot

output_file('barplot.html')

show(plot)

image.png

补丁图


#Creating patch plots

#Importing the required packages

from bokeh.io import output_file, show

from bokeh.plotting import figure

#Creating the regions to map

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

y_region = [[2,5,6], [3,6,7], [2,4,7,8]]

#Creating the figure

plot = figure()

#Building the patch plot

plot.patches(x_region, y_region, fill_color = ['yellow', 'black', 'green'], line_color = 'white')

#Output the plot

output_file('patch_plot.html')

show(plot)

image.png

散列图


#Creating scatter plots

#Importing the required packages

from bokeh.io import output_file, show

from bokeh.plotting import figure

#Creating the figure

plot = figure()

#Creating the x and y points

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

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

#Plotting the points with a cirle marker

plot.circle(x,y, size = 30)

#Output the plot

output_file('scatter.html')

show(plot)

image.png

更多资源


#- cross()

#- x()

#- diamond()

#- diamond_cross()

#- circle_x()

#- circle_cross()

#- triangle()

#- inverted_triangle()

#- square()

#- square_x()

#- square_cross()

#- asterisk()

#Adding labels to the plot

plot.figure(x_axis_label = "Label name of x axis", y_axis_label = "Label name of y axis")

#Customizing transperancy of the plot

plot.circle(x, y, alpha = 0.5)

plot.circle(x, y, alpha = 0.5)

参考资料

相关文章
|
4月前
|
机器学习/深度学习 数据可视化 数据挖掘
从菜鸟到高手,一图胜千言!Python数据分析与机器学习中的数据可视化实战秘籍!
【7月更文挑战第24天】在数据科学中,数据可视化是探索与沟通的关键。从Matplotlib的基础绘图到Seaborn的统计图形,再到Plotly的交互式图表,这些工具助你成为数据叙事大师。示例代码涵盖正弦波图、小费散点图及鸢尾花分布图,展现从简单到复杂的可视化之旅。掌握这些技巧,你就能更有效地解析和呈现数据故事。
57 4
|
4月前
|
数据可视化 数据挖掘 数据处理
数据之美,尽收眼底!Python数据分析师如何利用Matplotlib、Seaborn打造视觉盛宴,征服数据世界?
【7月更文挑战第22天】Python的Matplotlib和Seaborn库是数据可视化的利器。Matplotlib基础强大,灵活定制,适合各类图表;Seaborn在其上层封装,提供美观的统计图形,简化复杂操作。结合使用,它们助数据分析师揭示数据规律,打造视觉盛宴,征服数据世界。示例代码分别展示了如何绘制正弦波图和箱线图。
37 0
|
存储 Python
[雪峰磁针石博客]python 3.7极速入门教程4函数
本文教程目录 4函数 菲波那契序列: >>> # Fibonacci series: ... # the sum of two elements defines the next ... a, b = 0, 1 >>> while b < 10: ... print(b) ... a, b = b, a+b ... 1 1 2 3 5 8 本例的新特性。
|
测试技术 API Android开发
[雪峰磁针石博客]软件测试专家工具包3移动端
UI Automator UI Automator提供了一组API来构建基于交互UI的测试。API允许你执行操作,如打开设置菜单,非常适合黑盒自动化测试,在测试代码不依赖于应用的内部实现 uiautomatorviewer提供了一个方便的图形用户界面进行扫描和分析在Android设备上当前显示的UI组件。
|
存储 Python
[雪峰磁针石博客]python3快速入门教程1 turtle绘图-2函数
菲波那契序列: >>> # Fibonacci series: ... # the sum of two elements defines the next ... a, b = 0, 1 >>> while b < 10: ... print(b) ... a, b = b, a+b ... 1 1 2 3 5 8 本例的新特性。
|
Web App开发 存储 测试技术
[雪峰磁针石博客]数据仓库快速入门教程1简介
数据仓库是从各种渠道收集和管理数据的技术,可提供有意义的业务洞察,战略性地使用数据。它用于查询和分析而不是事务处理,是将数据转换为信息并及时向用户提供的过程。 决策支持数据库(数据仓库)与组织的运营数据库分开维护。
|
Web App开发 机器学习/深度学习 算法
[雪峰磁针石博客]2019-Python最佳数据科学工具库
说明 以下库都可以在python测试开发库中找到,github地址:https://github.com/china-testing/python-api-tesing 相关书籍:https://china-testing.github.io/python_books.html 核心库 NumPy Numerical Python的缩写,专为数学运算而设计。
下一篇
无影云桌面