Matplotlib - Performance and Large Data
What will the following code print?
import holoviews as hv
hv.extension('bokeh')
data = [(i, i) for i in range(100000)]
points = hv.Points(data)
print(points.opts(tools=['hover']).opts(active_tools=['wheel_zoom']))