Current time as numeric value in R

To get the current time, just use the Sys.time() function, see the Sys package for more information.
To get the current time as a numeric value in R, just use unclass(Sys.time()).
This seems to be higher accurate, 0.01 seconds.

./M6