fill_gaps.temporal_cubble_df {cubble} | R Documentation |
Gap-filling on the temporal component of a cubble object
Description
Gap-filling on the temporal component of a cubble object
Usage
## S3 method for class 'temporal_cubble_df'
fill_gaps(.data, ..., .full = FALSE, .start = NULL, .end = NULL)
## S3 method for class 'temporal_cubble_df'
scan_gaps(.data, ...)
Arguments
.data |
A tsibble. |
... |
A set of name-value pairs. The values provided will only replace
missing values that were marked as "implicit", and will leave previously
existing
|
.full |
|
.start , .end |
Set custom starting/ending time that allows to expand the existing time spans. |
Value
a cubble object
Examples
library(tsibble)
climate_aus |> face_temporal() |> fill_gaps()
climate_aus |> face_temporal() |> scan_gaps()
[Package cubble version 0.3.2 Index]