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 |
Tags
- 독후감
- tensorflow
- matplotlib
- 월간결산
- 시각화
- Python
- 파이썬 시각화
- 한빛미디어서평단
- Blog
- 파이썬
- 매틀랩
- MySQL
- Google Analytics
- Linux
- SQL
- 한빛미디어
- 티스토리
- Tistory
- 블로그
- Ga
- 통계학
- 서평
- python visualization
- 딥러닝
- 리눅스
- MATLAB
- 서평단
- Visualization
- Pandas
- 텐서플로
Archives
- Today
- Total
목록클러스터링 (1)
pbj0812의 코딩 일기
[Machine Learning] KMeans 를 통한 자동 편 가르기
0. 목표 - KMeans를 통한 자동 편 가르기 1. 실습 1) 데이터 생성 import numpy as np x = np.linspace(0, 5, 6) y = np.linspace(0, 100, 101) xx, yy = np.meshgrid(x, y) xxx = np.reshape(xx, (-1, )) yyy = np.reshape(yy, (-1, )) x2 = np.linspace(15, 20, 6) y2 = np.linspace(0, 100, 101) xx2, yy2 = np.meshgrid(x2, y2) xxx2 = np.reshape(xx2, (-1, )) yyy2 = np.reshape(yy2, (-1, )) import pandas as pd df = pd.DataFrame({'x' : ..
인공지능 & 머신러닝/Machine Learning
2021. 5. 11. 01:27