squids_to_datetime | R Documentation |
squids_to_timestamp()
converts a SQUID back to a timestamp (the number
of seconds that passed since the UNIC Epoch, 1970-01-01, 00:00:00 UTC), and
squids_to_datetime()
, squids_to_origin()
, squids_to_POSIXt()
convert a
SQUID to a POSIX time object (which is why they also have a tz
argument).
squids_to_datetime(x, tz = "UTC")
squids_to_timestamp(x)
x |
A vector of one or more SQUIDs |
tz |
The timezone to use |
A vector of one or more timestamps or POSIXct
date/time objects
exampleSQUID <-
squids::squids();
### Timestamp (second since UNIX Epoch,
### 1970-01-01, 00:00:00 UTC)
squids::squids_to_timestamp(
exampleSQUID
);
squids::squids_to_datetime(
exampleSQUID
);
### In Central European Time
squids::squids_to_datetime(
exampleSQUID,
tz = "CET"
);
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.