일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 자료구조
- 정처기
- Linux
- Lv 2
- mysql
- 알고리즘
- DevOps
- LV 0
- db
- Java
- Python
- 리눅스
- 인공지능
- 쿠버네티스
- Ai
- 자바
- 코테
- 코딩테스트
- 깃
- 프로그래머스
- 우분투
- docker
- git
- ubuntu
- github
- Kubernetes
- 머신러닝
- 파이썬
- 데이터베이스
- programmers
Archives
- Today
- Total
목록범주형 데이터 (1)
Myo-Kyeong Tech Blog
[AI / 데이터분석 ] 데이터 전처리 - Label Encoder와 One-Hot Encoder
Label Encoder Label Encoding은 문자 데이터를 숫자로 바꾸는 가장 기본적인 방법으로 각 유니크한 문자 데이터를 숫자 값으로 매핑하는 방법입니다. 예를 들어, Red, Blue, Green 3개의 색상이 있다고 있다고 가정해봅시다. Label Encoding을 적용하면 'Red'는 0, 'Blue'는 1, 'Green'는 2와 같은 숫자로 변환됩니다. ID 색상 1 Red 2 Blue 3 Green [Label Encoder] ID 색상 1 0 2 1 3 2 from sklearn.preprocessing import LabelEncoder #데이터 colors = ['Red', 'Blue', 'Green', 'Blue', 'Red'] # LabelEncoder 객체 생성 encode..
AI
2023. 5. 14. 22:02