Skip to content
Advertisement

Convert month int to month name in Pandas

I want to transform an integer between 1 and 12 into an abbrieviated month name.

I have a df which looks like:

JavaScript

I want the df to look like this:

JavaScript

Most of the info I found was not in python>pandas>dataframe hence the question.

Advertisement

Answer

You can do this efficiently with combining calendar.month_abbr and df[col].apply()

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement