1 Introduction to Matplotlib: 3D Plotting and Animations

are spaces to plot on, and are created by the add_subplot() method of a Figure object. Figures can have multiple axes. Calling plt.plot() returns a list of line objects. orF example, supposing x1 , y1 , x2 , and y2 are arrays containing data for two separate curves, then calling plt.plot(x1, y1, x2, y2) will return a list with two elements. ................
................