Answers for "how to change values in dataframe"

1

how to change values in dataframe python

energy['Country'] = energy['Country'].replace(['Afghanistan','Albania'],['Sa','lol'])
Posted by: Guest on February-10-2022
12

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 "how to change values in dataframe"

Python Answers by Framework

Browse Popular Code Answers by Language