exampleSQUIDs <-
squids::squids(5);
### Show how SQUIDs are the converted date/time
squids::squids_to_datetime(
exampleSQUIDs
);
### These seem the same, but if we take these as
### timestamps (seconds passed since the UNIX Epoch)
### and multiply with 100 to see the centiseconds,
### we see the differences:
as.numeric(
squids::squids_to_datetime(
exampleSQUIDs
)
) * 100;
### Get a sequence following the first one
squids::squids(5, follow=exampleSQUIDs);
### Follow at a distance
squids::squids(
5,
follow=exampleSQUIDs,
followBy = 3
);
Run the code above in your browser using DataLab