Answers for "pandas rename column values dictionary"

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

Code answers related to "pandas rename column values dictionary"

Python Answers by Framework

Browse Popular Code Answers by Language