: 판다스 라이브러리의 where 함수는 넘파이의 np.where 함수와 사용법 및 용도가 꽤 유사하긴 합니다.
다만, np.where과 pd.where의 차이점은 np.where은 해당 원소 값 대신 위치를 가져온다는 점과 값이 True인 위치에도 대치할 값 지정이 가능하다는 점입니다.
: Series객체1.where(Series객체에 대한 조건문, 거짓 값에 대한 대체 값)
df.where('조건',)
출처:
https://jimmy-ai.tistory.com/143
https://yganalyst.github.io/data_handling/memo_3/