data = read.csv('Report.csv', stringsAsFactors = FALSE, strip.white=TRUE, as.is = TRUE)
data = data.frame(Date = "2009-04-18", data)
data$Date = as.Date(data$Date, "%Y/%m/%d")
It keeps giving me the charToDate(x) error
(character string is not in a standard unambiguous format).
I have 0 idea what is wrong. My ultimate goal is to create a date column in this data frame.