1
0
mirror of https://github.com/msberends/AMR.git synced 2025-07-08 18:41:58 +02:00

fix for scoped dplyr verbs

This commit is contained in:
2022-10-21 15:13:19 +02:00
parent 3102beb241
commit 4bebba3610
5 changed files with 31 additions and 7 deletions

View File

@ -201,6 +201,18 @@ if (require("dplyr")) {
ci_max = rsi_confidence_interval(CIP, side = "max"),
)
}
if (require("dplyr")) {
# scoped dplyr verbs with antibiotic selectors
# (you could also use across() of course)
example_isolates \%>\%
group_by(ward) \%>\%
summarise_at(
c(aminoglycosides(), carbapenems()),
resistance
)
}
if (require("dplyr")) {