I have tried to plot 2d-array of shape 10980 * 10980 into a scatter using hvplot, dash, plotly
but none of them are able to plot such a huge data.
Can anyone suggest how can i plot this data into a scatter plot using python.
Below is the code using hvplot it returns the empty plot
plot = df.hvplot.scatter(x="Raster1", y="Raster2", cnorm="eq_hist",cmap="viridis", rasterize=True, width=600, height=600)
df stands for pandas dataframe
The shape of an dataframe is Shape of an df: (120560400, 2)
and Raster1 and Raster2 are two numercial columns of float32.
Aakash Bhatt is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.