Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

matplotlib different number of subplots

plt.figure(figsize=(12, 6))
ax1 = plt.subplot(2,3,1)
ax2 = plt.subplot(2,3,2)
ax3 = plt.subplot(2,3,3)
ax4 = plt.subplot(2,1,2)
axes = [ax1, ax2, ax3, ax4]
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #matplotlib #number #subplots
ADD COMMENT
Topic
Name
4+4 =