강의

멘토링

커뮤니티

Inflearn Community Q&A

taerimofficial5696's profile image
taerimofficial5696

asked

Pandas Pandas Data Analysis Basics Practice

Using map and applymap functions

applymap이 더 이상 권장되지 않는다고 하는데요

Written on

·

301

0

map은 시리즈에 적용되므로 모든 칼럼에 적용이 어려운데applymap함수는 apply와 람다식으로 대체하나요??
pandas

Answer 1

0

예 : df_rounded = df.apply(lambda x: np.around(x, decimals=2))

taerimofficial5696's profile image
taerimofficial5696

asked

Ask a question