In Python 2.7, I have a list of points in 3D, from which I would like to visualize the 3D surface using 2 things:
- 3D plot with some naive interpolation so I can see an image of what is happening;
- 2D heatmap with contour curves
I looked but could not find anything good in matplotlib
(saw mplot3d.Axes3D.scatter()
but I can only get it to plot points, not interpolate and draw the surface).
Did I just miss something? It sounds like such a common problem, but neither Excel or Python seem equipped for such a thing... Thank you very much.