I have a dataset (a long list of values but the form is as shown below) such that | NO | AC_NAME| | :--| :----- | | 0 | X | | 1 | Y |
and a dictionary such that {'X': 'STRING_DATA1', 'Y': 'STRING_DATA2', .....}
How can I add the values of the dictionary as a new column in the top dataset where the AC_NAME matches with the dictionary keys? Please help.