count_gaps | R Documentation |
Count implicit gaps
count_gaps(
.data,
.full = FALSE,
.name = c(".from", ".to", ".n"),
.start = NULL,
.end = NULL
)
.data |
A tsibble. |
.full |
|
.name |
Strings to name new columns. |
.start , .end |
Set custom starting/ending time that allows to expand the existing time spans. |
A tibble contains:
the "key" of the tbl_ts
".from": the starting time point of the gap
".to": the ending time point of the gap
".n": the number of implicit missing observations during the time period
Other implicit gaps handling:
fill_gaps()
,
has_gaps()
,
scan_gaps()
ped_gaps <- pedestrian %>%
count_gaps(.full = TRUE)
ped_gaps
if (!requireNamespace("ggplot2", quietly = TRUE)) {
stop("Please install the ggplot2 package to run these following examples.")
}
library(ggplot2)
ggplot(ped_gaps, aes(x = Sensor, colour = Sensor)) +
geom_linerange(aes(ymin = .from, ymax = .to)) +
geom_point(aes(y = .from)) +
geom_point(aes(y = .to)) +
coord_flip() +
theme(legend.position = "bottom")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.