데이터분석/시각화
여러개의 axs에 그래프그리기
dohunNewte
2023. 5. 25. 15:41
반응형
fig, ax = plt.subplots(ncols=2, nrows=2, figsize=(10,10))
sns.histplot(data=train, x=train_col_list[0], ax=ax[0,0]) ## 수직 히스토그램
728x90