Separating date and time variable from SD card

We’re trying to convert UTC time to CST. R is not recognizing the “dateTtimeZ” format. Has anyone done this and if so, would you be willing to share your code? Any help is greatly appreciated.

It’s a modified ISO 8601 date. There should be R packages available to parse it, or you can write your own strptime format string. Depending on the package you may have to change the ‘Z’ marker (for Zulu time) to the UTC offset ‘-00:00’ for strict ISO compliance.

Thank you! I’ll give it a try.