pandas
-
[Python Pandas] Pandas Dataframe에서 조건으로 column(열) 값 바꾸는 다양한 방법IT/Pandas 2022. 10. 19. 23:05
본 포스팅은 "https://www.geeksforgeeks.org/how-to-replace-values-in-column-based-on-condition-in-pandas/" 의 내용을 기반으로 작성했습니다. Pandas 데이터프레임에서 조건과 함께 값을 바꾸는 다양한 방법을 알아봅시다. 방법 1. Dataframe.loc[ ] 사용하기. 첫 번째 방법은 dataframe.loc[]를 사용하는 방법입니다. 아래의 순서 설명은 이해를 돕기 위한 설명으로 실제 연산 과정과는 다릅니다다. Example 1. import pandas as pd import numpy as np # data Student = { 'Name': ['John', 'Jay', 'sachin', 'Geetha', 'Amutha',..