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:
@ -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")) {
|
||||
|
||||
|
Reference in New Issue
Block a user