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 tabulator_select
philippjfr on master
Improve and standardize selecti… (compare)
philippjfr on tabulator_select
Fix indentation (compare)
philippjfr on tabulator_select
Further cleanup (compare)
philippjfr on tabulator_select
Cleanup (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.