YearsCode 컬럼의 'Less than 1 year'의 값은 0으로 변경하고, 'More than 50 years'의 값은 51로 일괄적으로 변경합니다.
replace 메소드
survey_df['YearsCode'].replace('Less than 1 year', 0, inplace = True)
survey_df['YearsCode'].replace('More than 50 years', 51, inplace = True)
공식문서 링크
'데이터 분석 및 시각화 > 파이썬' 카테고리의 다른 글
[Python]Pandas at VS loc (0) | 2023.01.31 |
---|---|
[Python]Pandas 특정 문자열 포함 행 찾고 대체하기(str.contains, where) (0) | 2023.01.30 |
[Python] 기초정리(Pandas(Merge, 시계열 자료, Groupby)) (0) | 2023.01.20 |
[Python] 기초 정리(Pandas_DataFrame3) (0) | 2023.01.20 |
[Python] 기초 정리(Pandas_DataFrame2) (2) | 2023.01.19 |