I have the following Df in R.
DF<-
Month      Count     Group
Dec-20     12        A2
Feb-21     30        R5
Mar-21     43        R5
Jan-21     90        B1 
Total      175       -
The Month are jumbled in the above dataframe, I need to make them in Descending order.
Required Df<-
Month      Count     Group
Mar-21     43        R5
Feb-21     30        R5
Jan-21     90        B1
Dec-20     12        A2 
Total      175       -