1
0
mirror of https://github.com/msberends/AMR.git synced 2025-07-21 10:53:18 +02:00

patient ID in first isolate

This commit is contained in:
2023-03-11 17:13:19 +01:00
parent 7ad8635994
commit 9179e98e12
4 changed files with 8 additions and 7 deletions

View File

@ -303,13 +303,14 @@ sir_confidence_interval <- function(...,
}
if (isTRUE(as_percent)) {
out <- percentage(out, digits = 1)
} else {
out <- round(out, digits = 3)
}
if (!isFALSE(collapse) && length(out) > 1) {
if (is.numeric(out)) {
out <- round(out, digits = 3)
}
out <- paste(out, collapse = ifelse(isTRUE(collapse), "-", collapse))
}
if (n < minimum) {
warning_("Introducing NA: ",
ifelse(n == 0, "no", paste("only", n)),