使用bundle\u graph/datashad生成图形时出错

2024-05-28 18:54:59 发布

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

我将通过this教程学习一些关于datashader和bokeh的知识。你知道吗

除了几个例子外,大部分似乎都很好。例如,此代码:

    %%opts Nodes (size=5)
    graph = layout_nodes(hv.Graph(edges_df), layout=forceatlas2_layout)
    forceatlas = bundle_graph(graph, split=False)
    pad = dict(x=(-.5, 1.3), y=(-.5, 1.3))
    datashade(forceatlas, width=800, height=800, cmap=fire[128:]) * forceatlas.nodes.redim.range(**pad)  

产生以下错误:

      1 graph = layout_nodes(hv.Graph(edges_df), layout=forceatlas2_layout)
----> 2 forceatlas = bundle_graph(graph, split=False)
      3 pad = dict(x=(-.5, 1.3), y=(-.5, 1.3))
      4 datashade(forceatlas, width=800, height=800, cmap=fire[128:]) * forceatlas.nodes.redim.range(**pad)
...
    493         for i in range(10):
    494             for batch in edge_segments:
--> 495                 smooth(batch, p.tension, segment_class.idx, segment_class.idy)
    496 
    497         # Flatten things

TypeError: can't unbox heterogeneous list

Tags: falsedfrangedictgraphbundlesplitnodes
1条回答
网友
1楼 · 发布于 2024-05-28 18:54:59

听起来像是在点击this bug,这在datashader master上是固定的,将包含在下一个版本(datashader0.7)中。同时,您可以将Numba降级到0.38.1,这应该可以避免问题。你知道吗

相关问题 更多 >

    热门问题