Answers for "rename values based on condition pandas"

2

Renaming row value in pandas

# if the row value in column 'is_blue' is 1 
# Change the row value to 'Yes' 
# otherwise change it to 'No'
df['is_blue'] = df['is_blue'].apply(lambda x: 'Yes' if (x == 1) else 'No') 


# You can also use mapping to accomplish the same result
# Warning: Mapping only works once on the same column creates NaN's otherwise
df['is_blue'] = df['is_blue'].map({0: 'No', 1: 'Yes'})
Posted by: Guest on November-19-2020
0

rename rows pandas based on condiions

df.loc[(df.Event == 'Dance'),'Event']='Hip-Hop'
df
Posted by: Guest on April-05-2020

Code answers related to "rename values based on condition pandas"

Python Answers by Framework

Browse Popular Code Answers by Language