본문 바로가기
Python/Data Visualization

[scatter_matrix] 여러 피쳐간 산점도 한번에 보기

by ISLA! 2023. 8. 31.

라이브러리 임포트

from pandas.plotting import scatter_matrix
import matplotlib.pyplot as plt
%matplotlib inline

 

산점도 그리기(여러 피쳐를 한번에)

attributes = ['주간통화시간', '주간통화요금', '주간통화횟수']

# 산점도 한번에 그리기
scatter_matrix(train[attributes], figsize = (10, 10), alpha = 0.1)

 

결과 예시

728x90