I want to convert date column (datetime64[ns]) into day-month-year format with this code ,
pd.to_datetime(final['Date'],format = ('%d-%b-%Y'))
but it remains the same:
0     2019-12-31
1     2020-01-01
2     2020-01-02
3     2020-01-03
4     2020-01-04
         ...    
112   2020-04-21
113   2020-04-22
114   2020-04-23
115   2020-04-24
116   2020-04-25
 
     
    