Jupyter Bokeh:glyph rend中不存在列名

2024-09-19 23:36:47 发布

您现在位置:Python中文网/ 问答频道 /正文

我有一个GlyphRenderer,其数据_源数据是

{'index': [0, 1, 2, 3, 4, 5, 6, 7],
 'color': ['#3288bd', '#66c2a5', '#abdda4', '#e6f598', '#fee08b', '#fdae61', '#f46d43', '#d53e4f']}

渲染器的图示符是

^{pr2}$

渲染时,我看到了

E-1001 (BAD_COLUMN_NAME): Glyph refers to nonexistent column name: color [renderer: GlyphRenderer(id='1d1031f5-6ee3-4744-a0f7-22309798e313', ...)]

我显然遗漏了一些东西,但这几乎是从公开的例子中提取出来的。为什么cd4{cd2>中的数据不显示在cd4}中。在

完整的源代码可从https://pastebin.com/HXAEEujP获得


Tags: 数据indexcolumncolorbad图示pr2cd4
1条回答
网友
1楼 · 发布于 2024-09-19 23:36:47

通常,在构造一个对象时提供所有相关的参数,而不是在对象已经创建之后对其进行变异。对于Bokeh来说尤其如此——在许多情况下,它根据传递给__init__的参数做一些额外的工作。在

请看一下您的代码版本:

import math

from bokeh.io import show
from bokeh.models import GraphRenderer, StaticLayoutProvider, Oval, GlyphRenderer, ColumnDataSource, MultiLine
from bokeh.palettes import Spectral8
from bokeh.plotting import figure

N = 8
node_indices = list(range(N))

plot = figure(title="Graph Layout Demonstration", x_range=(-1.1, 1.1), y_range=(-1.1, 1.1),
              plot_width=250, plot_height=250,
              tools="", toolbar_location=None)

node_ds = ColumnDataSource(data=dict(index=node_indices,
                                     color=Spectral8),
                           name="Node Renderer")
edge_ds = ColumnDataSource(data=dict(start=[0] * N,
                                     end=node_indices),
                           name="Edge Renderer")
### start of layout code
circ = [i * 2 * math.pi / 8 for i in node_indices]
x = [math.cos(i) for i in circ]
y = [math.sin(i) for i in circ]
graph_layout = dict(zip(node_indices, zip(x, y)))
graph = GraphRenderer(node_renderer=GlyphRenderer(glyph=Oval(height=0.1, width=0.2, fill_color="color"),
                                                  data_source=node_ds),
                      edge_renderer=GlyphRenderer(glyph=MultiLine(),
                                                  data_source=edge_ds),
                      layout_provider=StaticLayoutProvider(graph_layout=graph_layout))

plot.renderers.append(graph)

show(plot)

相关问题 更多 >