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
- string
- 최댓값
- wcss
- 최솟값
- Python
- analizer
- 덴드로그램
- 반복문
- function
- len()
- list
- insert()
- hierarchical_clustering
- DataAccess
- Dictionary
- 분류 결과표
- data
- del
- append()
- pandas
- Machine Learning
- DataFrame
- sklearn
- matplotlib
- dendrogram
- IN
- numpy
- nan
- elbow method
- count()
Archives
- Today
- Total
목록regplot (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