Due to errors in my database/export, I have an inconsistant timestamp - sometimes with seconds, sometimes without - how can I easily unify it?
e.g. read_csv with X1 = col_datetime(format = "%d.%m.%Y %H:%M:%S")
is not working properly.
My data look like follows:
X1, X2
24.02.2012 22:00, '121'
24.02.2012 22:15:00, '122'
24.02.2012 22:30:00, '124'
24.02.2012 22:45:00, '122'
24.02.2012 23:00, '121'
Thanks!