I have a dataframe as follow:
import pandas as pd
import numpy as np
df = pd.DataFrame()
df['c0'] = [ '2019-01-01 06:00:00', '2019-01-03 06:00:00', '2019-05-03 06:00:00' ]
df['c1'] = [ 0.4452, 0.2064, 0.1416]
I want to change the format of the date as "yyyy-dd-mm". The final dataframe which I want is: