When running a visualization in NDlib using DiffusionTrend, the code fails with:
KeyError: 'legend'
The error seems to originate from the use of the deprecated 'legend' argument in:
ndlib/viz/bokeh/DiffusionViz.py
Example line:
p.line(..., legend=self.srev[k], ...)
In Bokeh >=3 the correct argument is 'legend_label' (my installed version is 3.8.0)
Python 3.11
NDlib 5.1.1
When running a visualization in NDlib using DiffusionTrend, the code fails with:
KeyError: 'legend'
The error seems to originate from the use of the deprecated 'legend' argument in:
ndlib/viz/bokeh/DiffusionViz.py
Example line:
p.line(..., legend=self.srev[k], ...)
In Bokeh >=3 the correct argument is 'legend_label' (my installed version is 3.8.0)
Python 3.11
NDlib 5.1.1