For questions, use https://discourse.holoviz.org/ instead! This chat is for informal discussions and debugging sessions with developers of the HoloViz.org tools (HoloViews, Datashader, Panel, hvPlot, GeoViews, Param, etc.), but user questions should go to the HoloViz Discourse site so that others won't have to ask them again.
philippjfr on hover_renderer_bug
Add test (compare)
philippjfr on hover_renderer_bug
Handle None renderers when merg… (compare)
philippjfr on v0.7.1a2
philippjfr on gh_actions_docs_builds
Remove .travis.yml (compare)
philippjfr on gh_actions_docs_builds
Add doc and build workflows to … (compare)
philippjfr on v0.7.1a1
philippjfr on master
Cast type when melting wide dat… (compare)
as such:
randcol = lambda : f'#{randhex()}{randhex()}{randhex()}'
data = pd.DataFrame({
'x': np.arange(0,1,0.1),
'y': np.arange(0,1,0.1),
'color': [randcol()]*5 + [randcol()]*5,
'label': ['a']*5 + ['b']*5,
})
overlay = []
for label, df in data.groupby('label'):
scatter = hv.Scatter(df, kdims=['x', 'y'], vdims=['color', 'label'], label=label).opts(color='color', show_legend=True)
overlay.append(scatter)
hv.Overlay(overlay)
???
hv.Scatter(data, kdims=['x', 'y'], vdims=['color', 'label'], label='label').groupby('label').overlay()
conda install -c pyviz holoviz rise=5.5
?
Anyone else have issues with bokeh after creating a fresh env (as of yesterday)? I'm getting
(unknown) [bokeh] JS/Python version mismatch
(unknown) [bokeh] Library versions: JS (2.2.1) / Python (2.2.3)
Apologies if this is the wrong place, but the Bokeh gitter doesn't seem to be a thing anymore.