Answers for "pandas replace specific cell value"

5

replace cell pandas

df.loc[row_or_index, column_name] = value
Posted by: Guest on April-10-2021
1

pandas replace data in specific columns with specific values

### replace one value ###
df["column"].replace("US","UK") # you can also use numerical values
### replace more than one value ###
df["column"].replace(["man","woman","child"],[1,2,3]) # you can also use numerical values
#   man ==> 1
# woman ==> 2
# child ==> 3
Posted by: Guest on September-22-2021

Code answers related to "pandas replace specific cell value"

Python Answers by Framework

Browse Popular Code Answers by Language