Answers for "pandas rename values in a column based on a 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

Code answers related to "pandas rename values in a column based on a dictionary"

Python Answers by Framework

Browse Popular Code Answers by Language