-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
transition to snapshot testing (#162)
- Loading branch information
1 parent
9ed5543
commit c024fb7
Showing
18 changed files
with
450 additions
and
231 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# LOO var formulas | ||
|
||
Code | ||
leave_var_out_formulas(y ~ 1, data = form_data) | ||
Condition | ||
Error in `leave_var_out_formulas()`: | ||
! There should be at least 2 predictors in the formula. | ||
|
||
--- | ||
|
||
Code | ||
leave_var_out_formulas(y ~ a, data = form_data) | ||
Condition | ||
Error in `leave_var_out_formulas()`: | ||
! There should be at least 2 predictors in the formula. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# pulling objects | ||
|
||
Code | ||
res <- car_set_1 %>% pull_workflow("reg_lm") | ||
Condition | ||
Warning: | ||
`pull_workflow()` was deprecated in workflowsets 0.1.0. | ||
i Please use `extract_workflow()` instead. | ||
|
||
--- | ||
|
||
Code | ||
res <- car_set_1 %>% pull_workflow_set_result("reg_lm") | ||
Condition | ||
Warning: | ||
`pull_workflow_set_result()` was deprecated in workflowsets 0.1.0. | ||
i Please use `extract_workflow_set_result()` instead. | ||
|
||
--- | ||
|
||
Code | ||
car_set_1 %>% pull_workflow_set_result("Gideon Nav") | ||
Condition | ||
Warning: | ||
`pull_workflow_set_result()` was deprecated in workflowsets 0.1.0. | ||
i Please use `extract_workflow_set_result()` instead. | ||
Error in `halt()`: | ||
! No workflow ID found for 'Gideon Nav' | ||
|
||
--- | ||
|
||
Code | ||
car_set_1 %>% pull_workflow("Coronabeth Tridentarius") | ||
Condition | ||
Warning: | ||
`pull_workflow()` was deprecated in workflowsets 0.1.0. | ||
i Please use `extract_workflow()` instead. | ||
Error in `halt()`: | ||
! No workflow ID found for 'Coronabeth Tridentarius' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.