일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- javascript
- Scrum
- 다나와
- keras
- python
- 크롤링
- Crawling
- DANAWA
- ECS
- TypeScript
- visualizing
- 애자일
- analyzing
- Project
- AWS
- 프로젝트
- pandas
- matplotlib
- webcrawling
- Agile
- data
- angular
- adaptive life cycle
- Method
- algorithm
- tensorflow
- data analyze
- opencv
- 자바스크립트
- instance
Archives
- Today
- Total
목록Arithmetic (1)
LiJell's 성장기
09.python_pandas_arithmetic_method
Modified on Jan 02 2022 # -- coding: utf-8 -- """ Created on Mon Dec 20 17:05:55 2021 @author: hanju """ import numpy as np from pandas import Series, DataFrame df1 = DataFrame(np.arange(1,17).reshape(4,4)) dir(df1) # 다양한 기능 확인 df1 # 0 1 2 3 # 0 1 2 3 4 # 1 5 6 7 8 # 2 9 10 11 12 # 3 13 14 15 16 df1.sum(axis=0) # 행별 (서로 다른 행 끼리) 같은 위치값 갖는것 끼리 합 # 0 28 # 1 32 # 2 36 # 3 40 # dtype: int64 df1.sum(..
Bigdata/파이썬_Python
2022. 1. 2. 22:03