전체 글 (75) 썸네일형 리스트형 [패스트캠퍼스 수강 후기] 데이터분석 인강 100% 환급 챌린지 24회차 미션 24. ch02. seaborn - 09. pairplot - 25. ch02. seaborn - 10. violinplot 24. ch02. seaborn - 09. pairplot 집합의 조합에 대해 히스토그램과 분포도 숫자형 column에 대해서만 4-1. 기본 pairplot sns.pairplot(tips) plt.show() 4-2. hue 옵션으로 특성 구분 sns.pairplot(tips, hue='size') plt.show() 4-3. 컬러 팔레트 적용 sns.pairplot(tips, hue='size', palette="rainbow") plt.show() 4-4. 사이즈 적용 sns.pairplot(tips, hue='size', palette="rainbow", height=5,.. [패스트캠퍼스 수강 후기] 데이터분석 인강 100% 환급 챌린지 23회차 미션 22. ch02. seaborn - 07. distplot, hist - 23. ch02. seaborn - 08. heatmap 22. ch02. seaborn - 07. distplot, hist 2. distplot matplotlib의 hist 그래프와 kdeplot을 통합한 그래프 분포와 밀도를 확인 # 샘플데이터 생성 x = np.random.randn(100) x 2-1. 기본 distplot sns.distplot(x) plt.show() 2-2. 데이터가 Series 일 경우 x = pd.Series(x, name="x variable") x sns.distplot(x) plt.show() 2-3. rugplot rug는 rugplot이라고도 불리우며, 데이터 위치를 x축 위에 작은 선분.. [패스트캠퍼스 수강 후기] 데이터분석 인강 100% 환급 챌린지 22회차 미션 20. ch02. seaborn - 05. seaborn matplotlib 차트를 seaborn에서 - 21. ch02. seaborn - 06. countplot titanic = sns.load_dataset('titanic') titanic survived: 생존여부 pclass: 좌석등급 sex: 성별 age: 나이 sibsp: 형제자매 + 배우자 숫자 parch: 부모자식 숫자 fare: 요금 embarked: 탑승 항구 class: 좌석등급 (영문) who: 사람 구분 deck: 데크 embark_town: 탑승 항구 (영문) alive: 생존여부 (영문) alone: 혼자인지 여부 tips = sns.load_dataset('tips') tips total_bill: 총 합계 요금표 tip.. 이전 1 ··· 15 16 17 18 19 20 21 ··· 25 다음