Why is the timezone changed when putting a datetime value into a vector in R? (Using the lubridate
package to create the datetime value)
lubridate::now(tz = "UTC")
#> "2018-05-25 20:11:16 UTC"
c(lubridate::now(tz = "UTC"))
#> "2018-05-25 16:11:16 EDT"
(I'm in the Eastern timezone)