I have python pandas dataframe, in which a column contains month name.
How can I do a custom sort using a dictionary, for example:
custom_dict = {'March':0, 'April':1, 'Dec':3}
|
returns a DataFrame with columns March, April, Dec |
|||
|
|
|
You could create an intermediary series, and
|
|||
|
|