I am trying to read a date format in R, but it does not handle the weekday (first thing). This is what I tried so far:
as.Date('Tue Feb 8 19:56:28 2022', format = "%a %b %d %H:%M:%S %Y")
This works fine:
as.Date('Feb 8 19:56:28 2022', format = "%b %d %H:%M:%S %Y")
Help appreciated.