Matplotlib - Performance and Large Data
Given the code below, what will be the output type when using Datashader with HoloViews?
import datashader as ds
import holoviews as hv
import pandas as pd
hv.extension('bokeh')
data = pd.DataFrame({'x': range(1000000), 'y': range(1000000)})
points = ds.Points(data, 'x', 'y')
shaded = ds.Canvas().shade(points)
print(type(shaded))