scan_gaps {tsibble} | R Documentation |
Scan a tsibble for implicit missing observations
Description
Scan a tsibble for implicit missing observations
Usage
scan_gaps(.data, .full = FALSE, .start = NULL, .end = NULL)
Arguments
.data |
A tsibble.
|
.full |
-
FALSE inserts NA for each keyed unit within its own period.
-
TRUE fills NA over the entire time span of the data (a.k.a. fully balanced panel).
-
start() pad NA to the same starting point (i.e. min(<index>) ) across units.
-
end() pad NA to the same ending point (i.e. max(<index>) ) across units.
|
.start , .end |
Set custom starting/ending time that allows to expand the
existing time spans.
|
See Also
Other implicit gaps handling:
count_gaps()
,
fill_gaps()
,
has_gaps()
Examples
scan_gaps(pedestrian)
[Package
tsibble version 1.1.5
Index]