Hi, I have two columns in a huge dataset that have "chr" as their data type and I need to change them to "dttm." I used
dataset$colName <- as.datetime( dataset$colName)
That changed the data type but turned every date and time in that column to N/A. How do I change the data type without getting rid of my data? thanks.