일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 깃
- 리눅스
- 자바
- github
- mysql
- 자료구조
- Ai
- db
- Kubernetes
- 프로그래머스
- docker
- git
- DevOps
- 파이썬
- LV 0
- Java
- 우분투
- Python
- ubuntu
- 코딩테스트
- programmers
- 코테
- 정처기
- 쿠버네티스
- 데이터베이스
Archives
- Today
- Total
목록Label Encoder (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