需要帮助从曲线中提取数据

问题描述 投票:-2回答:1

有人建议可以怎么样,我们像其他的Tableau做工具提取出我们显示在背景虚化服务器图中的数据

python bokeh
1个回答
0
投票

你没有提供的,你想获得什么样的输出的一个例子,但我想你的意思是这样的:

bokeh serve --show script.py

#!/usr/bin/python3
from bokeh.models import ColumnDataSource
from bokeh.plotting import figure, curdoc

source = ColumnDataSource({'x': [0, 1, 2, 3, 4, 5], 'y': [5, 4, 3, 2, 1, 0], 'color': ['red', 'green', 'yellow', 'blue', 'orange', 'purple'], 'size': [15, 20, 15, 20, 15, 20]})
p = figure()
p.circle(x='x', y='y', color='color', size='size', source=source)
print(source.data)
curdoc().add_root(p)

这段代码绘制数据并返回与图中显示的所有数据字典。

© www.soinside.com 2019 - 2024. All rights reserved.