Update README.md

This commit is contained in:
MS Berends 2018-02-21 12:19:42 +01:00 committed by GitHub
parent 3cccf9df3f
commit 942c41ae9c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 6 deletions

View File

@ -10,6 +10,8 @@ This R package contains functions to make microbiological, epidemiological data
AMR can also be predicted for the forthcoming years with the `rsi_predict` function. For use with the `dplyr` package, the `rsi` function can be used in conjunction with `summarise` to calculate the resistance percentages of different antibiotic columns of a table.
It also contains functions to translate antibiotic codes from the lab (like `"AMOX"`) or the [WHO](https://www.whocc.no/atc_ddd_index/?code=J01CA04&showdescription=no) (like `"J01CA04"`) to trivial names (like `"amoxicillin"`) and vice versa.
## How to use it?
```r
# Call it with:
@ -73,7 +75,7 @@ Other epidemiological functions:
```r
# Apply EUCAST Expert Rules v3.1 (latest) to antibiotic columns
interpretive_reading(...)
EUCAST_rules(...)
# Determine key antibiotic based on bacteria ID
key_antibiotics(...)
@ -91,11 +93,6 @@ rsi_predict(...)
# Get name of antibiotic by ATC code
abname(...)
abname("J01CR02", from = "atc", to = "umcg") # "AMCL"
# Calculate age of patients
age(...)
# Categorize patients age to age groups
age.group(...)
```
## How to get it?