일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 크롤링
- angular
- DANAWA
- javascript
- Project
- tensorflow
- Scrum
- instance
- ECS
- data analyze
- 애자일
- Method
- webcrawling
- python
- adaptive life cycle
- visualizing
- analyzing
- opencv
- TypeScript
- Crawling
- 자바스크립트
- data
- matplotlib
- pandas
- algorithm
- AWS
- keras
- 다나와
- 프로젝트
- Agile
Archives
- Today
- Total
목록shift (1)
LiJell's 성장기
14.python.drop_shift_rename
Modified on Jan 07 2022 # -- coding: utf-8 -- """ Created on Tue Dec 28 13:14:11 2021 @author: hanju """ 14. drop, shift, rename 1. drop 특정 행, 컬럼 제거 이름 전달 emp = pd.read_csv("./data/emp.csv") emp # empno ename deptno sal # 0 1 smith 10 4000 # 1 2 allen 10 4500 # 2 3 ford 20 4300 # 3 4 grace 10 4200 # 4 5 scott 30 4100 # 5 6 king 20 4000 # scott 퇴사 emp.loc() emp['ename'] =='scott' ..
Bigdata/파이썬_Python
2022. 1. 7. 18:18