반응형
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
- App
- 조코딩
- 앱개발
- TeachagleMachine
- ReactNative
- redux
- 클론코딩
- expo
- 크롤링
- FirebaseV9
- 딥러닝
- Ros
- kaggle
- JavaScript
- 전국국밥
- coding
- Instagrame clone
- 사이드프로젝트
- 데이터분석
- 카트폴
- 정치인
- python
- 강화학습 기초
- pandas
- clone coding
- 머신러닝
- 강화학습
- 리액트네이티브
- selenium
- React
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