admin管理员组

文章数量:1394611

Have a look at the following code:

options(digits.secs = 6)
options(digits = 22)
structure(1743070066.75, class = c("POSIXct", "POSIXt"))
structure(1743070066.76, class = c("POSIXct", "POSIXt"))

which prints out

[1] "2025-03-27 11:07:46.75 CET"
[1] "2025-03-27 11:07:46.75 CET"

You can see that the result is the same which is obviously wrong. How can I change this, so the correct result is printed?

本文标签: