I have a data set the the following date format in a pandas data frame:
warnings = pd.read_csv('output.csv', sep=',')
warnung['from']
7 Di, 15. Aug, 21:52 Uhr
8 Di, 15. Aug, 22:46 Uhr
9 Di, 15. Aug, 22:46 Uhr
10 Di, 15. Aug, 21:52 Uhr
11 Di, 15. Aug, 22:46 Uhr
12 Di, 15. Aug, 21:52 Uhr
13 Di, 15. Aug, 22:46 Uhr
14 Di, 15. Aug, 21:52 Uhr
15 Di, 15. Aug, 22:46 Uhr
Here my question, how can I convert this to a legible date format in pandas. I want to compare if the actual date of today and match this to date from my data-set.
I would like to have, e.g.
15.08.2017, 22:46:00
or in a more convenient format. Then I want to compare the actual date against the dates in my data set.
How can I do this within a pandas DataFrame.
Thanks for any help.