(1) I hadn't tried to submit a bug report because (a) I wasn't sure
that it was an actual limitation in strptime() and not my ignorance or
stupidity and (b) I didn't actually know how to submit a bug report.
> bug.report(package = "base")
brings up a web page. Clicking on "File a Bug" takes me to
On Mon, Nov 6, 2023 at 3:02 AM Martin Maechler
wrote:
>
> > Richard O'Keefe
> > on Mon, 6 Nov 2023 18:37:34 +1300 writes:
>
> > Thanks to all who replied. On Mon, 6 Nov 2023 at 18:37,
> > Richard O'Keefe wrote:
>
> >> OK, so the consensus is (1) One cannot make strptime
>
> Richard O'Keefe
> on Mon, 6 Nov 2023 18:37:34 +1300 writes:
> Thanks to all who replied. On Mon, 6 Nov 2023 at 18:37,
> Richard O'Keefe wrote:
>> OK, so the consensus is (1) One cannot make strptime
>> accept ISO8601-compliant zone designators (2) The
>> lubri
Thanks to all who replied.
On Mon, 6 Nov 2023 at 18:37, Richard O'Keefe wrote:
> OK, so the consensus is
> (1) One cannot make strptime accept ISO8601-compliant zone designators
> (2) The lubridate package can
> (3) Or one can hack away with regex.
> Lubridate it is, then.
>
> But I do regard st
OK, so the consensus is
(1) One cannot make strptime accept ISO8601-compliant zone designators
(2) The lubridate package can
(3) Or one can hack away with regex.
Lubridate it is, then.
But I do regard strptime's inability to process ISO8601-compliant zone
designators as a bug.
On Mon, 6 Nov 2023
try using 'lubridate'
> library(lubridate)Attaching package: ‘lubridate’
The following objects are masked from ‘package:base’:
date, intersect, setdiff, union
> x <- "2017-02-28T13:35:00+03:00"> ymd_hms(x)[1] "2017-02-28 10:35:00 UTC"
>
Thanks
Jim Holtman
*Data Munger Guru*
*What is t
I usually just use a regex to strip the colon.
On November 5, 2023 3:45:01 PM PST, Richard O'Keefe wrote:
>I have some data that includes timestamps like this:
>2017-02-28T13:35:00+03:00
>The documentation for strptime says that %z expects
>an offset like 0300. I don't see any way in the documen
what if you try lubridate::as_datetime('2017-02-28T13:35:00+03:00’)
-Roy
> On Nov 5, 2023, at 3:45 PM, Richard O'Keefe wrote:
>
> I have some data that includes timestamps like this:
> 2017-02-28T13:35:00+03:00
> The documentation for strptime says that %z expects
> an offset like 0300. I don
8 matches
Mail list logo