Hello, I am trying to import air quality data (particularly looking at wind speed) into OpenAir and am having difficulties. The Date column of my data is formatted as yyyy-mm-dd T H:M:S.
This is my code:
test <- import("99999953878.csv", date= "DATE",
date.format="%Y/%m/%d%H:%M:%S"
and I am getting the error:
Error in import("99999953878.csv", date = "DATE", date.format = "%Y/%m/%d%H:%M:%S") :
Date conversion problems, check that date.format is correct.
First few dates looks like this: 2021-01-01T00:00:00, 2021-01-01T00:05:00, 2021-01-01T00:10:00, 2021-01-01T00:15:00, 2021-01-01T00:20:00, 2021-01-01T00:25:00
I think the problem is the 'T' that is included in the column, but I can't find any information on how to get R to read this correctly. I would appreciate any help