You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a limitation on the size integers can be stored which causes the package fails as the integer goes over the allowed size, this occurs between "1901-12-13 00:00:01" and "1901-12-14 00:00:01" .
> as.integer(as.POSIXct("1901-12-13 00:00:01"))
[1] NA
Warning message:
NAs introduced by coercion to integer range
> as.integer(as.POSIXct("1901-12-14 00:00:01"))
[1] -2147443199
This can be seen when using the dtt_date_time() function.
This is just a limitation of the package due to storing dates/times as integers, since this is core to the package this behaviour is not expected to be changed at this time.
The text was updated successfully, but these errors were encountered:
There is a limitation on the size integers can be stored which causes the package fails as the integer goes over the allowed size, this occurs between
"1901-12-13 00:00:01"
and"1901-12-14 00:00:01"
.This can be seen when using the
dtt_date_time()
function.This is just a limitation of the package due to storing dates/times as integers, since this is core to the package this behaviour is not expected to be changed at this time.
The text was updated successfully, but these errors were encountered: