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