참고링크
https://koreadatascientist.tistory.com/115
진짜 기초만 설명. 이걸보면 apply가 이런거구나. lambda가 이런거구나 알게된다.
https://zephyrus1111.tistory.com/90
이해가 잘 안된다.. np.sum()? 그러나 lambda의 활용법에 대해 설명해줘서 나중에 꼭 공부해야된다.
키에 cm붙이기
앞글자만 대문자
lambda 예시
df['Weight/Height'] = df.apply(lambda x: x['Weight'] / x['Height'], axis=1)
df
'파이썬. 데이터분석 > Pandas' 카테고리의 다른 글
Pandas DataFrame : insert 열삽입 (0) | 2022.06.24 |
---|---|
Pandas DataFrame : del / drop 행, 열 삭제, 특정행 삭제 (0) | 2022.06.24 |
Pandas DataFrame : isnull, replace, fillna, dropna 결측치처리 (0) | 2022.06.21 |
Pandas DataFrame : duplicated, drop_duplicates 중복제거 (0) | 2022.06.21 |
Pandas DataFrame : replace (0) | 2022.06.20 |