I have a large dataset with many different dates, I want to convert them to POSIXct but do not care about times, all I need is for the time to be formatted identical between dates.
E.g. my original date format
2019-03-08
2019-03-12
2018-10-30
2018-11-04
when using the code data$newdate <- as.POSIXct(data$date,tz="UTC")
becomes
2019-03-08 19:00:00 EST
2019-03-12 20:00:00 EDT
2018-10-30 20:00:00 EDT
2018-11-04 19:00:00 EST
I know that the times in the resulting format are technically identical, but I need them to be formatted as such too, but I can't figure out how. Is there a different timezone I should be using than UTC?