mirror of
https://github.com/msberends/AMR.git
synced 2025-07-12 22:21:52 +02:00
added boxplot for (grouped) freq()
This commit is contained in:
11
NEWS.md
11
NEWS.md
@ -28,6 +28,17 @@
|
||||
* Frequency tables (`freq()`):
|
||||
* speed improvement for microbial IDs
|
||||
* fixed level names in markdown
|
||||
* support for boxplots:
|
||||
```r
|
||||
septic_patients %>%
|
||||
freq(age) %>%
|
||||
boxplot()
|
||||
# grouped boxplots:
|
||||
septic_patients %>%
|
||||
group_by(hospital_id) %>%
|
||||
freq(age) %>%
|
||||
boxplot()
|
||||
```
|
||||
* Removed all hardcoded EUCAST rules and replaced them with a new reference file: `./inst/eucast/eucast.tsv`
|
||||
* Added ceftazidim intrinsic resistance to *Streptococci*
|
||||
* Changed default settings for `age_groups()`, to let groups of fives and tens end with 100+ instead of 120+
|
||||
|
Reference in New Issue
Block a user