DataBivariate (여러개의 변수간의) Visualization 방법 my_order = df['make'].value_counts().indexplt.figure(figsize = (10,20))sb.countplot(data = df, y = 'make', order = my_order)plt.show() 참고위와 같이 countplot로 자료를 생성하기에 광범위 할경우 지금 소개하는 방법들을 사용하면 유용합니다. TIP💡 corr() : 메서드는 pandas에서 DataFrame의 열 간 상관관계를 계산하는 데 사용됩니다. dataframe.corr(method='pearson', min_periods=1) 1. Scatter Plot..