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

(v0.7.0.9015) vignette fix

This commit is contained in:
2019-06-22 21:33:13 +02:00
parent b94638d53e
commit 278244140c
15 changed files with 29 additions and 27 deletions

View File

@ -91,7 +91,7 @@ Resistance is not easily predicted; if we look at vancomycin resistance in Gram
```{r}
septic_patients %>%
filter(mo_gramstain(mo) == "Gram positive") %>%
filter(mo_gramstain(mo, language = NULL) == "Gram-positive") %>%
resistance_predict(col_ab = "VAN", year_min = 2010, info = FALSE) %>%
ggplot_rsi_predict()
```
@ -112,7 +112,7 @@ For the vancomycin resistance in Gram positive bacteria, a linear model might be
```{r}
septic_patients %>%
filter(mo_gramstain(mo) == "Gram positive") %>%
filter(mo_gramstain(mo, language = NULL) == "Gram-positive") %>%
resistance_predict(col_ab = "VAN", year_min = 2010, info = FALSE, model = "linear") %>%
ggplot_rsi_predict()
```