[TIL] 2021-02-16 : subplots / 확증적 데이터 분석(CDA) / shape() / corr()
📌 subplot ➰실제로 썼던 코드 ➰ 간소화해서 정리 figure, ((ax1, ax2), (ax3, ax4)) = plt.subplots(nrows=2, ncols=2) figure.set_size_inches(16,8) sns.barplot(data=total2, x='년도', y='count', ax=ax1) sns.barplot(data=total2, x='월', y='count', ax=ax2) sns.barplot(data=total2, x='일', y='count', ax=ax3) sns.barplot(data=total2, x='시간', y='count', ax=ax4) ➰ row(행)만 있도록 하고 싶을 때 (nrows = ) ➰ columns(열)만 있도록 하고싶을때 (ncols =..