반응형
apply
- 데이터 프레임에 apply 함수를 적용하면 각 데이터에 대해 apply 내부 함수를 적용해준다.
df.height
0 165.3
1 170.1
2 175.0
3 182.1
4 168.0
5 162.0
6 155.2
7 176.9
8 178.5
9 176.1
10 167.1
11 180.0
12 162.2
13 176.1
14 158.2
15 168.6
16 169.2
Name: height, dtype: float64
df.height.apply(lambda x: x/100)
# or (두 코드는 같은 역할을 한다.)
def divide(x):
return x/100
df.height.apply(divide)
0 1.653
1 1.701
2 1.750
3 1.821
4 1.680
5 1.620
6 1.552
7 1.769
8 1.785
9 1.761
10 1.671
11 1.800
12 1.622
13 1.761
14 1.582
15 1.686
16 1.692
Name: height, dtype: float64
반응형
'🛠 기타 > Data & AI' 카테고리의 다른 글
파이썬 토크나이저 - 어간 찾기 (nltk) (0) | 2020.07.17 |
---|---|
Pandas 데이터프레임 pivot table (0) | 2020.07.16 |
Pandas 데이터프레임 멀티 인덱싱 (0) | 2020.07.16 |
[scikit-learn 라이브러리] joblib (pickle 객체 저장) (0) | 2020.07.15 |
[scikit-learn 라이브러리] XOR 문제 (0) | 2020.07.15 |