본문 바로가기
판다스/함수 cheat sheet

[pandas] where

by 김판다t 2023. 7. 5.

조건문이 False인 부분의 값을 변환하는 함수

즉 불리언 마스킹(boolean masking) 을 수행하는 함수 

 

import pandas as pd
s = pd.Series([86, 79, 93, 80], index=list('ABCD'))

 

 

 

 

 

pandas where

 

mask 함수의 주요 매개변수(parameter)와 인수(argument), 기본값(default)

df.where(cond, other=nan)

 

 

cond

조건문처럼 작동하는 True와 False의 배열을 입력받는 매개변수.

 

 

other

조건문이 False일 때 변환될 값을 지정하는 매개변수 . 기본값은 NaN이다

 

 

 

 

그외 많은 매개변수들이 있다. 더 궁금하면 아래 링크를 참고

https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.where.html

 

 

 

 

 

'판다스 > 함수 cheat sheet' 카테고리의 다른 글

[pandas] pct_change  (0) 2023.07.06
[pandas] diff  (0) 2023.07.06
[pandas] map  (0) 2023.06.27
[pandas] round  (0) 2023.06.26
[pandas] isna / isnull  (0) 2023.06.26