Suppose I have gridded data with dimensions (x,y) and values are in z. so simply we can make scatter plot for third dimension by:
import numpy as np
import matplotlib.pyplot as plt
x = np.random.random(10)
y = np.random.random(10)
z = np.random.random(10)
plt.scatter(x, y, c = z, s=150, cmap = 'jet')
plt.show()
what i am thinking now is to remove the line color of each circular scatter plot. And also instead of circle can we make it square??
I did not find any way to do that. your help will be highly appreciated.
![[1]: https://i.sstatic.net/2acLp.png](https://gamingcommission.club/i.sstatic.net/4IW2w.png)
