I have 8823 data points with x,y coordinates. I\'m trying to follow the answer on how to get a scatter dataset to be represented as a heatmap but when I go
When you call np.meshgrid for scatter figure, you need to normalize your data if it is too large to process, try this module
# Feature Scaling from sklearn.preprocessing import StandardScaler st = StandardScaler() X = st.fit_transform(X)