jonmmease on holodata_refactor
WIP interface driver refactor WIP interface driver refactor WIP interface driver refactor and 28 more (compare)
philippjfr on highlight_operation
Add dframe methods to spatialpa… Do not convert to category type… (compare)
jlstevens on highlight_operation
Factored out mask display into … (compare)
jlstevens on highlight_operation
Added indicator option to allow… (compare)
jlstevens on highlight_operation
Fixed use of pixels parameter (compare)
philippjfr on highlight_operation
Use df._meta for empty df (compare)
philippjfr on highlight_operation
Fix reduce on empty element Null test over mask area (compare)
jlstevens on highlight_operation
Unchained transformers (compare)
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,
})
hv.Scatter(data, kdims=['x', 'y'], vdims=['color', 'label'], label='label').opts(color='color', show_legend=True)