Answers for "function to change the value in dataframe python"

9

replace values of pandas column

df.loc[df['column'] == 'column_value', 'column'] = 'new_column_value'
Posted by: Guest on June-26-2020

Code answers related to "function to change the value in dataframe python"

Python Answers by Framework

Browse Popular Code Answers by Language