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