tsibble (version 0.9.2)

scan_gaps: Scan a tsibble for implicit missing observations

Description

Scan a tsibble for implicit missing observations

Usage

scan_gaps(.data, .full = FALSE)

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.

See Also

Other implicit gaps handling: count_gaps(), fill_gaps(), has_gaps()

Examples

Run this code
# NOT RUN {
scan_gaps(pedestrian)
# }

Run the code above in your browser using DataLab