October 2018
Beginner to intermediate
676 pages
18h 30m
English
The following code block draws three plots in one figure:
fig = plt.figure()ax1 = plt.subplot(221)ax2 = plt.subplot(222)ax3 = plt.subplot(212)
ax1.plot([1,2])ax2.plot([2,1])ax3.plot([2,4])
plt.show()
Read now
Unlock full access