I'm working with a rather large dataset with an x, y, and z. The x and y are put on a scatter plot with z set as the colorbar values. There are 24 distinct columns and each column has ~20000 points. I'm trying to determine dominant z value in relation to the y value, but I don't want to get misled my the clear coloring seen in the image produced. Given that there are so many markers in 1 column, I want to know how Matplotlib is determining what markers are overlaid over others.
This may be hard to visualize so here is an image of my code and output. If we look at hour ~24, we see dominant low elevation coloring, but I don't want to make the assumption that the high elevations are being covered by the low elevation values. Is it wrong to assume that low elevation is dominant in that time slot or is there something I should try to make it clear? Just remember, there are about 20000 points in that single column so the possibility of cover up is nonzero.
I haven't found a clear cut answer on this matter so I would greatly appreciate any help