I am looking for a way to plot a heat-map in python from data x,y,C, where C is there color of a given coordinate (x,y). Most of the methods are transforming x,y via mesh-grid, however it would be a discontinuous mesh-grid.
Example Data:
x y C
3.5 0.05 2
3.5 0.00 2
3.5 -0.05 0
3.5 -0.10 0
My data represents a phase structure, which means that there are large regions of the same color, and more-or-less well defined lines are separating the regions. I would like to have smooth coloured regions without holes.