How do I replace all abbreviation in a column to word eg NY to New York, US to United States etal. I could do for just NY with inplace=True, but I need to collectively do for all abbreviations.
I tried df['prod_state'].replace('NY', 'New York', inplace= True), it worked but when I included US, errors started popping