Bokeh 是 Python 中的数据可视化库,提供高性能的交互式图表和绘图。Bokeh 输出可以在笔记本、html 和服务器等各种媒体中获得。可以在 Django 和烧瓶应用程序中嵌入散景图。Bokeh 为用户提供了两个可视化界面:
bokeh.models:为应用程序开发人员提供高度灵活性的低级接口。 bokeh.plotting:用于创建视觉字形的高级界面。
要安装 bokeh 包,请在终端中运行以下命令:
pip install bokeh
用于生成散景图的数据集是从Kaggle收集的。
代码 #1: 散点标记要创建散点圆标记,使用 circle() 方法。
# 导入模块
from bokeh.plotting import figure, output_notebook, show
# 输出到 notebook
output_notebook()
# 创建图
p = figure(plot_width = 400, plot_height = 400)
# 添加具有大小、颜色和 alpha 的圆形渲染器
p.circle([1, 2, 3, 4, 5], [4, 7, 1, 6, 3],
size = 10, color = "navy", alpha =