Matplotlib - Performance and Large Data
Given the code below, what will be the output type?
import holoviews as hv
import datashader as ds
hv.extension('bokeh')
data = [(i, i**2) for i in range(1000000)]
points = hv.Points(data)
shaded = ds.Canvas().shade(points)
print(type(shaded))