Menu

[r7429]: / branches / mathtex / examples / mplot3d / hist3d_demo.py  Maximize  Restore  History

Download this file

28 lines (23 with data), 719 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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)
x = np.random.rand(100) * 4
y = np.random.rand(100) * 4
hist, xedges, yedges = np.histogram2d(x, y, bins=4)
elements = (len(xedges) - 1) * (len(yedges) - 1)
xpos, ypos = np.meshgrid(
[xedges[i] + 0.25 for i in range(len(xedges) - 1)],
[yedges[i] + 0.25 for i in range(len(yedges) - 1)])
xpos = xpos.flatten()
ypos = ypos.flatten()
zpos = [0] * elements
dx = [0.5] * elements
dy = [0.5] * elements
dz = hist.flatten()
ax.bar3d(xpos, ypos, zpos, dx, dy, dz, color='b')
pylab.show()
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.