I have a data frame that looks like this:
price
Date
2022-01-01 19:20:00 100
2022-01-01 19:27:00 100
2022-01-02 19:31:00 102
I want the dataframe to only have unique dates:
price
Date
2022-01-01 19:20:00 100
2022-01-02 19:31:00 102
How can I achieve that?