I have sequence of point with 3 coordinates each
How to plot them as polyline in 3D?
The following code
import matplotlib.pyplot as plt
x = [1, 2, 3]
y = [2, 3, 4]
z = [5, 6, 7]
fig = plt.figure()
ax = fig.add_subplot(111, projection='3d')
ax.plot_wireframe(x, y, z)
plt.show()
throws
Unknown projection '3d'