Learn R Programming

timefully (version 0.1.0)

check_timeseries_gaps: Check if there are any gaps in the datetime sequence

Description

This means all rows a part from "datetime" will be NA. Note that timefully considers a full datetime sequence when days are complete.

Usage

check_timeseries_gaps(dtf)

Value

tibble

Arguments

dtf

data.frame or tibble, first column of name datetime being of class datetime and rest of columns being numeric

Examples

Run this code
# Sample just some hours
dtf_gaps <- dtf[c(1:3, 7:10), ]

# Note that the full day is provided
check_timeseries_gaps(
   dtf_gaps
)

Run the code above in your browser using DataLab