Fills data gaps of missing dates of the data provided. Builds a continuous data set from the start date to the end date.
Only missing dates are filled, columns not specified as dates or groups will be filled with NA. Will completely fill first and
last years, unless specified using pad_ends = FALSE
.
fill_missing_dates(
data,
dates = Date,
values = Value,
groups = STATION_NUMBER,
station_number,
water_year_start = 1,
pad_ends = TRUE
)
Data frame of daily data that contains columns of dates, flow values, and (optional) groups (e.g. station numbers).
Leave blank or set to NULL
if using station_number
argument.
Name of column in data
that contains dates formatted YYYY-MM-DD. Only required if dates column name is not
'Date' (default). Leave blank or set to NULL
if using station_number
argument.
Name of column in data
that contains numeric flow values, in units of cubic metres per second. Not required as
of fasstr 0.3.3 as all other columns are filled with NA
.
Name of column in data
that contains unique identifiers for different data sets, if applicable. Only required
if groups column name is not 'STATION_NUMBER'. Function will automatically group by a column named 'STATION_NUMBER' if
present. Remove the 'STATION_NUMBER' column beforehand to remove this grouping. Leave blank if using station_number
argument.
Character string vector of seven digit Water Survey of Canada station numbers (e.g. "08NM116"
) of
which to extract daily streamflow data from a HYDAT database. Requires tidyhydat
package and a HYDAT database.
Leave blank if using data
argument.
Numeric value indicating the month (1
through 12
) of the start of water year for
analysis. Default 1
.
Logical value indicating whether to fill incomplete start and end years with rows of dates.
If FALSE
then only missing dates between the provided start and end dates will be filled. Default TRUE
.
A tibble data frame of the source data with additional rows where missing dates existed.
# Run if HYDAT database has been downloaded (using tidyhydat::download_hydat())
if (file.exists(tidyhydat::hy_downloaded_db())) {
# Fill missing dates with NA using calendar years
fill_missing_dates(station_number = "08NM116")
# Fill missing dates with NA using water years starting in August
fill_missing_dates(station_number = "08NM116",
water_year_start = 8)
}
#> # A tibble: 26,663 × 5
#> STATION_NUMBER Date Parameter Value Symbol
#> <chr> <date> <chr> <dbl> <chr>
#> 1 08NM116 1948-08-01 Flow NA NA
#> 2 08NM116 1948-08-02 Flow NA NA
#> 3 08NM116 1948-08-03 Flow NA NA
#> 4 08NM116 1948-08-04 Flow NA NA
#> 5 08NM116 1948-08-05 Flow NA NA
#> 6 08NM116 1948-08-06 Flow NA NA
#> 7 08NM116 1948-08-07 Flow NA NA
#> 8 08NM116 1948-08-08 Flow NA NA
#> 9 08NM116 1948-08-09 Flow NA NA
#> 10 08NM116 1948-08-10 Flow NA NA
#> # … with 26,653 more rows