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

(v0.7.1.9063) septic_patients -> example_isolates

This commit is contained in:
2019-08-27 16:45:42 +02:00
parent 7a6fce4eb8
commit 93be16484b
92 changed files with 1143 additions and 818 deletions

View File

@ -24,10 +24,10 @@ context("freq.R")
test_that("frequency table works", {
library(clean)
# mo
expect_true(is.freq(freq(septic_patients$mo)))
expect_true(is.freq(freq(example_isolates$mo)))
# rsi
expect_true(is.freq(freq(septic_patients$AMX)))
expect_true(is.freq(freq(example_isolates$AMX)))
library(dplyr)
expect_true(is.freq(septic_patients %>% freq(mo)))
expect_true(is.freq(example_isolates %>% freq(mo)))
})