Matplotlib - 3D Plotting
What will be the height of the bar at position (x=1, y=2) in the following code?
import matplotlib.pyplot as plt from mpl_toolkits.mplot3d import Axes3D fig = plt.figure() ax = fig.add_subplot(111, projection='3d') x = [1, 2] y = [2, 3] z = [0, 0] dx = dy = 1 dz = [5, 10] ax.bar3d(x, y, z, dx, dy, dz) plt.show()
