Answers for "pandas map to dictionary"

3

maping value to data in pandas dataframe

note: u can assigne values in each of the common values in the dataframe 

df['new_coloum'] = df['coloum'].map({'value_1':1,'value_2':0})
Posted by: Guest on May-11-2020
1

pandas rename column values dictionary

df['col1'].map(di)       # note: if the dictionary does not exhaustively map all
                         # entries then non-matched entries are changed to NaNs
Posted by: Guest on January-02-2021
0

pandas rename column values dictionary

df['col1'].map(di).fillna(df['col1'])
Posted by: Guest on January-02-2021

Python Answers by Framework

Browse Popular Code Answers by Language