Products | Versions |
---|---|
Spotfire Enterprise Runtime for R | All Versions |
This article explains how we can convert the string version of the ISO 8601 DateTime format into DateTime format using TIBCO Enterprise Runtime for R(TERR) function.
Example of ISO 8601 DateTime format: 2020-05-11T23:41:09+00:00
library(parsedate)
x <- "2020-05-11T23:41:09+00:00"
result <- data.frame(dateCol=parse_iso_8601(x))