plt.subplots
作者:互联网
该函数返回的是子画布的对象。
代码:
fig, ((ax1, ax2), (ax3, ax4)) = plt.subplots(2, 2, figsize=(15, 8))//fig是整体画布,ax1到ax4是子画布对象。 train_loan_fr.groupby('grade')['grade'].count().plot(kind='barh', ax=ax1, title='Count of grade fraud') train_loan_nofr.groupby('grade')['grade'].count().plot(kind='barh', ax=ax2, title='Count of grade non-fraud') train_loan_fr.groupby('employmentLength')['employmentLength'].count().plot(kind='barh', ax=ax3, title='Count of employmentLength fraud') train_loan_nofr.groupby('employmentLength')['employmentLength'].count().plot(kind='barh', ax=ax4, title='Count of employmentLength non-fraud') 在plot函数中ax参数传入ax1,ax2。分别画在不同的画布上。 否则就需要plt.subplot(221)后掉用一个plot绘图函数。 绘制完成后继续用plt.subplot(222)后继续调用绘图函数。标签:plot,employmentLength,plt,grade,loan,subplots,barh,ax 来源: https://www.cnblogs.com/hahaah/p/15241016.html