diff --git a/DESCRIPTION b/DESCRIPTION index 0d02223e..3a9c9017 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -68,4 +68,4 @@ Encoding: UTF-8 LazyData: true LazyDataCompression: bzip2 Roxygen: list(markdown = TRUE) -RoxygenNote: 7.3.1 +RoxygenNote: 7.3.2 diff --git a/man/apply_decision_rules.Rd b/man/apply_decision_rules.Rd index b5299d59..2d19a9aa 100644 --- a/man/apply_decision_rules.Rd +++ b/man/apply_decision_rules.Rd @@ -67,18 +67,15 @@ Based on the decision rules output we define the emergency status value, } } \examples{ -\dontrun{ df <- dplyr::tibble( taxonID = c(rep(1008955, 10), rep(2493598, 3)), y = c(seq(2009, 2018), seq(2016, 2018)), obs = c(1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 3, 0) ) apply_decision_rules(df, - eval_year = c(2016, 2017, 2018), + eval_year = 2016, y_var = "obs", taxonKey = "taxonID", - year = y + year = "y" ) } - -}