반응형
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
- 사이드프로젝트
- JavaScript
- 머신러닝
- 조코딩
- TeachagleMachine
- 딥러닝
- clone coding
- React
- 전국국밥
- kaggle
- expo
- App
- selenium
- 데이터분석
- 앱개발
- FirebaseV9
- 정치인
- Instagrame clone
- python
- 카트폴
- ReactNative
- 클론코딩
- 강화학습
- 리액트네이티브
- pandas
- coding
- 크롤링
- Ros
- redux
- 강화학습 기초
Archives
- Today
- Total
목록데이터전처리 (1)
qcoding
[데이터전처리]LabelEncoding / OneHotEncoding
## label encoding ## label encoding from sklearn.preprocessing import LabelEncoder fruits= ['사과','블루베리','바나나','귤','블루베리','바나나','바나나','사과'] # 레이블 인코더 생성 label_encoder=LabelEncoder() # 레이블 인코딩 적용 fruits_label_encoded=label_encoder.fit_transform(fruits) print(fruits_label_encoded) fruits_label_encoded.reshape(-1,1) -> 단점으로는 머신러닝에서는 숫자로 값을 판단하기 때문에 1와 2 의 관계가 1과 3의 관계보다 상관성이 높다고 판단할 수 있음. 실제로는 범주형 데..
Python 데이터분석
2022. 6. 29. 22:01