Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | 5 | 6 | |
| 7 | 8 | 9 | 10 | 11 | 12 | 13 |
| 14 | 15 | 16 | 17 | 18 | 19 | 20 |
| 21 | 22 | 23 | 24 | 25 | 26 | 27 |
| 28 | 29 | 30 | 31 |
Tags
- function
- hierarchical_clustering
- wcss
- list
- data
- string
- sklearn
- len()
- dendrogram
- insert()
- pandas
- 분류 결과표
- 반복문
- Dictionary
- del
- 덴드로그램
- Python
- analizer
- Machine Learning
- elbow method
- DataAccess
- 최댓값
- count()
- DataFrame
- numpy
- IN
- 최솟값
- matplotlib
- append()
- nan
Archives
- Today
- Total
목록pairplot (1)
개발공부
import numpy as np import pandas as pd import matplotlib.pyplot as plt import seaborn as sb 아래는 차량의 메이커, 모델, 년도, 분류, 연비 등등을 나타낸 데이터 프레임이다. 두 컬럼간의 관계를 표현하는 차트 1. matplotlib 의 scatter 사용 displ과 comb의 상관관계를 표현하라 plt.scatter(data = df, x = 'displ', y = 'comb') plt.title('Displ Vs Comb') plt.xlabel('Displacement (L)') plt.ylabel('Combined Fuel Etf (mpg)') plt.show() 2. seaborn 의 regplot 을 이용하는 방법 reg..
Python/Matplotlib
2022. 5. 4. 15:09