check_augment_no_data {modeltests} | R Documentation |
Check an augment method when no data or newdata is passed
Description
Call this function to perform tests. If a tests fails, an informative error will be thrown. Otherwise silent.
Test when strict = FALSE
:
None
Additional tests when strict = TRUE
:
-
aug(model)
either returns an informative error or produces output that passescheck_tibble()
. If the output passes
check_tibble
, will issue warning when:Augmented data is missing rows from original data.
Augmented data is missing columns from original data.
Original data has rownames but ugmented data is missing
.rownames
column.
Usage
check_augment_no_data(aug, model, passed_data, strict = TRUE)
Arguments
aug |
An augment method. For example, |
model |
A fit model object to call the augment method on. |
passed_data |
The dataset that |
strict |
Logical indicating whether the strict version of tests should be used. Defaults
to |
Value
An invisible NULL
. This function should be called for side effects, not return values.