I have a dataframe like the following:
df:
ts_dt                        Data                                                       
2019-01-01 01:51:31.540       5
2019-01-01 03:51:31.540      15
2019-01-02 03:51:31.540      15
2019-01-03 03:51:31.540      25
2019-01-03 05:51:31.540      25
I would like to get a list of the distinct days of ts_dt such as
days = [2019-01-01, 2019-01-02, 2019-01-03]
 
    