Answers for "change a specific value in a 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 "change a specific value in a dataframe python"

Python Answers by Framework

Browse Popular Code Answers by Language