일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- db
- docker
- 프로그래머스
- 인공지능
- git
- Kubernetes
- DevOps
- 자바
- 코딩테스트
- 데이터베이스
- 쿠버네티스
- 자료구조
- 코테
- 알고리즘
- Linux
- mysql
- ubuntu
- 리눅스
- programmers
- Java
- Ai
- 머신러닝
- 파이썬
- 우분투
- 정처기
- Lv 2
- Python
- github
- 깃
- LV 0
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