i am trying to visualize a very large data points on the map for that i am using datashade, I am trying to work on chicago crime dataset: https://www.kaggle.com/currie32/crimes-in-chicago . I am following the guidselines given in this tutorial- (https://towardsdatascience.com/large-scale-visualizations-and-mapping-with-datashader-d465f5c47fb5)
Here's a look at my dataset:
(easting and northing are the projected values of latitude and longitude)
The below code is supposed to give me the map visualisation of all my points, But i am not getting any output not even a single line of plain text
# Map of all businesses colored by category.
from colorcet import bmw
url="http://server.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer/tile/{Z}/{Y}/{X}.png"
geomap = gv.WMTS(url)
points = hv.Points(gv.Dataset(dask_df, kdims=['easting', 'northing'], vdims=['IUCR']))
biz_cat = dynspread(datashade(points, color_key=bmw, element_type=gv.Image, aggregator=ds.count()))
geomap*biz_cat