count_difftime | R Documentation |
Counts the Time differences (epochs) per group (in a grouped dataset)
count_difftime(dataset, Datetime.colname = Datetime)
dataset |
A light logger dataset. Expects a |
Datetime.colname |
column name that contains the datetime. Defaults to
|
a tibble
with the number of occurences of each time difference per
group
#count_difftime returns the number of occurences of each time difference
#and is more comprehensive in terms of a summary than `gap_finder` or
#`dominant_epoch`
count_difftime(sample.data.irregular)
dominant_epoch(sample.data.irregular)
gap_finder(sample.data.irregular)
#irregular data can be regularized with `aggregate_Datetime`
sample.data.irregular |>
aggregate_Datetime(unit = "15 secs") |>
count_difftime()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.