이번에는 시본(seaborn) 라이브러리에 있는 pairplot() 함수를 써서 전체 상관도를 볼 수 있는 그래프를 출력해 보겠습니다.
import seaborn as sns import matplotlib.pyplot as plt sns.pairplot(df, ='species'); ----- ➊ plt.show()
그림 12-3 | pairplot 함수로 데이터 한번에 보기
이번에는 시본(seaborn) 라이브러리에 있는 pairplot() 함수를 써서 전체 상관도를 볼 수 있는 그래프를 출력해 보겠습니다.
import seaborn as sns import matplotlib.pyplot as plt sns.pairplot(df, ='species'); ----- ➊ plt.show()
그림 12-3 | pairplot 함수로 데이터 한번에 보기