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
- DataFrame
- list
- Machine Learning
- sklearn
- append()
- hierarchical_clustering
- wcss
- nan
- del
- 덴드로그램
- 최댓값
- dendrogram
- 최솟값
- DataAccess
- matplotlib
- 분류 결과표
- pandas
- elbow method
- analizer
- string
- insert()
- function
- Python
- Dictionary
- IN
- len()
- 반복문
- count()
- data
- numpy
Archives
- Today
- Total
목록Pie (1)
개발공부
import matplotlib.pyplot as plt 가장 기본적인 Plot x 좌표의 데이터와, y좌표의 데이터를 가지고 만들수 있는 선형 그래프다. >>> x = np.arange(0, 9+1) >>> x array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9]) >>> y = np.arange(0, 9+1) >>> y array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9]) plt.plot(x, y) plt.savefig('test1.jpg') plt.show() Bar Chart (ceaborn) import numpy as np import pandas as pd import matplotlib.pyplot as plt import seaborn as sb 아래는 포켓몬 ..
Python/Matplotlib
2022. 5. 3. 17:53