Yulia Iakovleva

Results 3 comments of Yulia Iakovleva

Hi @aronatkins Sure, this is my `sessionInfo()`: ``` > sessionInfo() R version 4.2.0 (2022-04-22) Platform: x86_64-pc-linux-gnu (64-bit) Running under: CentOS Linux 7 (Core) Matrix products: default BLAS/LAPACK: /usr/prog/FlexiBLAS/3.0.4-GCC-11.2.0/lib64/libflexiblas.so.3.0 locale: [1]...

For your example I retrieved NA instead of date: ``` > client raw head(raw$created_time, 1) [1] "2022-02-08T17:03:07-05:00" > head(strptime(raw$created_time, "%Y-%m-%dT%H:%M:%SZ", tz = "UTC"), 1) [1] NA > head(as.POSIXct(strptime(raw$created_time, "%Y-%m-%dT%H:%M:%SZ", tz...

So my time format definitely differs from yours... `2022-09-21T12:39:45Z` vs `2022-02-08T17:03:07-05:00`