We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f272839 commit 6fa4a5fCopy full SHA for 6fa4a5f
tests/testthat/test-step_epi_naomit.R
@@ -4,11 +4,10 @@ library(parsnip)
4
library(workflows)
5
6
# Random generated dataset
7
-set.seed(100)
8
x <- tibble(geo_value = rep("nowhere",200),
9
time_value = as.Date("2021-01-01") + 0:199,
10
- case_rate = rpois(100,20) + 1:200,
11
- death_rate = rpois(100,10) + 1:200) %>%
+ case_rate = 1:200,
+ death_rate = 1:200) %>%
12
as_epi_df()
13
14
# Preparing the datasets to be used for comparison
0 commit comments