JSS
JSS2w ago

Version 0.10.6 causes hv.scatter (holoviews) plots to fail.

I found my code would not generate any plots after upgrading and gave this error: ''scatter' object has no attribue '_render_model' This was the case for even the basic example from the reference docs: https://hvplot.holoviz.org/reference/tabular/scatter.html
import hvplot.pandas

from bokeh.sampledata.iris import flowers as df

df.sample(n=5)

df.hvplot.scatter(x='sepal_length', y='sepal_width', by='species', legend='top', height=400, width=400)
import hvplot.pandas

from bokeh.sampledata.iris import flowers as df

df.sample(n=5)

df.hvplot.scatter(x='sepal_length', y='sepal_width', by='species', legend='top', height=400, width=400)
Downgrading to 0.10.5 resolves this for me.
1 Reply
Hall
Hall2w ago
Someone will reply to you shortly. In the meantime, this might help:

Did you find this page helpful?