일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- matplotlib
- 등비수열
- 기계학습
- 파이썬
- 문제풀이
- pandas 메소드
- barh
- 통계학
- MacOS
- 재귀함수
- 순열
- INSERT
- 등차수열
- Folium
- 리스트
- plt
- python
- Machine Learning
- numpy
- 자료구조
- Slicing
- SQL
- 머신러닝
- tree.fit
- 스터디노트
- maplotlib
- 조합
- pandas filter
- pandas
- DataFrame
Archives
- Today
- Total
목록minmaxscaler (1)
코딩하는 타코야끼

1. Decision Tree를 이용한 Wine 분석 red_url = "" white_url = "" red_wine = pd.read_csv(red_url, sep=";") white_wine = pd.read_csv(white_url, sep=";") red_wine.head() white_wine.head() ⚡️ 레드/화이트 와인별로 등급 fig = px.histogram(wine, x="quality", color="color") fig.show() ⚡️ 데이터 분리 X = wine.drop(["color"], axis=1) y = wine["color"] from sklearn.model_selection import train_test_split X_train, X_test, y_train..
zero-base 데이터 취업 스쿨/스터디 노트
2023. 10. 11. 15:39