empet
10
Hi @Jupiter,
You can plot your data as a Heatmap or Contour with no lines (to imitate your Matplotlib example), following this recent answer to a similar question:
but replace the line:
Z = griddata((x, y), z, (xr, yr) , method='cubic')
with:
Z = griddata((x, y), z, (xr, yr) , method='linear')