1
0
mirror of https://github.com/msberends/AMR.git synced 2026-03-29 19:35:54 +02:00

Built site for AMR@3.0.1.9036: 4171d5b

This commit is contained in:
github-actions
2026-03-20 16:11:30 +00:00
parent ba003f3e23
commit 3560dfd611
115 changed files with 820 additions and 779 deletions

View File

@@ -473,9 +473,9 @@ x <- custom_mdro_guideline(
)
x
#> A set of custom MDRO rules:
#> 1. If CIP is R and age is higher than 60 then: Elderly Type A
#> 2. If ERY is R and age is higher than 60 then: Elderly Type B
#> 3. Otherwise: Negative
#>   1. If CIP is R and age is higher than 60 then: Elderly Type A
#>   2. If ERY is R and age is higher than 60 then: Elderly Type B
#>   3. Otherwise: Negative
#>
#> Unmatched rows will return NA.
#> Results will be of class 'factor', with ordered levels: Negative < Elderly Type A < Elderly Type B
@@ -518,9 +518,9 @@ my_guideline <- custom_mdro_guideline(
)
my_guideline
#> A set of custom MDRO rules:
#> 1. If AMX is R then: Custom MDRO 1
#> 2. If all of cephalosporins_2nd() is R then: Custom MDRO 2
#> 3. Otherwise: Negative
#>   1. If AMX is R then: Custom MDRO 1
#>   2. If all of cephalosporins_2nd() is R then: Custom MDRO 2
#>   3. Otherwise: Negative
#>
#> Unmatched rows will return NA.
#> Results will be of class 'factor', with ordered levels: Negative < Custom MDRO 1 < Custom MDRO 2
@@ -528,8 +528,8 @@ my_guideline
out <- mdro(example_isolates, guideline = my_guideline)
#> For `cephalosporins_2nd()` using columns 'CXM' (cefuroxime) and 'FOX'
#> (cefoxitin)
#> Assuming a filter on all 2 cephalosporins_2nd. Wrap around `all()` or
#> `any()` to prevent this note.
#> Assuming a filter on all 2 cephalosporins_2nd. Wrap around `all()` or `any()`
#> to prevent this note.
table(out)
#> out
#> Negative Custom MDRO 1 Custom MDRO 2