matplotlib

Previous topic

mplot3d example code: contour3d_demo3.py

Next topic

mplot3d example code: contourf3d_demo2.py

This Page

mplot3d example code: contourf3d_demo.pyΒΆ

(Source code)

from mpl_toolkits.mplot3d import axes3d
import matplotlib.pyplot as plt
from matplotlib import cm

fig = plt.figure()
ax = fig.gca(projection='3d')
X, Y, Z = axes3d.get_test_data(0.05)
cset = ax.contourf(X, Y, Z, cmap=cm.coolwarm)
ax.clabel(cset, fontsize=9, inline=1)

plt.show()

Keywords: python, matplotlib, pylab, example, codex (see Search examples)