matplotlib

This Page

mplot3d example code: bars3d_demo.pyΒΆ

[source code]

../../_images/bars3d_demo.png
from mpl_toolkits.mplot3d import Axes3D
from matplotlib.collections import PolyCollection
from matplotlib.colors import colorConverter
import pylab
import random
import numpy as np

fig = pylab.figure()
ax = Axes3D(fig)
for c, z in zip(['r', 'g', 'b', 'y'], [30, 20, 10, 0]):
    xs = np.arange(20)
    ys = [random.random() for x in xs]
    ax.bar(xs, ys, zs=z, zdir='y', color=c, alpha=0.8)

ax.set_xlabel('X')
ax.set_ylabel('Y')
ax.set_zlabel('Z')

pylab.show()

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