본문 바로가기
카테고리 없음

pandas series fillna with another series

by judy@ 2023. 9. 7.

데이터프레임에 score라는 컬럼이 있을 때, score 컬럼의 nan 값을 옆에 있는 score2라는 컬럼의 값으로 대치하는 코드.

df.score = np.where(df.score.isnull(), df.score2, df.score)

 

 

적용할 수 있는 상황과 목표는 아래 그림과 같이 나타낼 수 있다. (from stackoverflow)

 

답변도 위 이슈에서 얻을 수 있다.

반응형