Are there any easy way to tell datashader that my lines should be colored based on some value column, so called multicolored lines shaded together?
my data is already separated with NaNs for the plotting
sd is a DASK from pandas: sd.tail()
x y vabs vabs1
5137339 14.289062 51.994141 389.443665 172.533920
5137340 -55.431641 -3.410156 417.245514 144.485260
5137341 -113.472656 -57.730469 345.505646 173.973068
5137342 -145.548828 -94.755859 219.604645 201.809570
5137343 NaN NaN NaN NaN
dynspread(datashade(hv.Curve(sd),aggregator=ds.min('vabs'),normalization='log',cmap=plt.cm.gist_rainbow).options(width=1000,height=1000))
but I need to get similar effect like in:
this image is generated using the method described in matplotlib, which is very slow and non interactive.