데이터 시각화 (다양한 시각화 연습5)

김현지·2022년 11월 4일
0

데이터 시각화

목록 보기
5/6
post-thumbnail

(1)기울기 떨어지는 그래프

#sepal_wid x 축 , len y축 
#-0.42 인 상관관계 그래프 그리기
#상관계수가 절대적이지는 않음
#이 선이 그려진 이유:선과 점들의 사이 (수직으로 내렸을때 )거리가 생기는데 그 거리는 그거리의 합이 가장 작은 것을 선택
#기울기 조정 하기 위해 계속 더하고 결과값이 나옴 
#반드시 상관계수만 보지는 말것!
sns.regplot('sepal_width','petal_length'
                , data=iris)

(2)Tips 샘플 데이터 불러오기

tips = sns.load_dataset("tips")
tips

(3)산점도 그리기

#청구서와 팁사이의 관계를 나타내는 산점도 그리기
sns.scatterplot('total_bill','tip',data = tips)
plt.show()

(4)iris Jointplot

1) #jointplot 수치형 변수간의 관계
#차트의 중앙에 상관 관계 그래프 사용
#그래프 상단과 오른쪽에 두 변수의 분포 보여줌
sns.jointplot('petal_length', 'petal_width', data=iris)

2) #중앙그래프 선택하기 kind scatter , reg, resid , kde, hex

sns.jointplot('petal_length', 'petal_width', data=iris,kind ='reg' )#중앙 그래프는 kind로 선택함
profile
안녕하세요! 오늘도 모두 좋은 하루 보내세요!

0개의 댓글