Thursday, 12 September 2013

Make contour of scatter

Make contour of scatter

In python, If I have a set of data
x, y, z
I can make a scatter with
import matplotlib.pyplot as plt
plt.scatter(x,y,c=z)
How I can get a plt.contourf(x,y,z) of the scatter ?

No comments:

Post a Comment