2018-12-16 22:45:12 +01:00
|
|
|
# ==================================================================== #
|
|
|
|
# TITLE #
|
|
|
|
# Antimicrobial Resistance (AMR) Analysis #
|
|
|
|
# #
|
2019-01-02 23:24:07 +01:00
|
|
|
# SOURCE #
|
|
|
|
# https://gitlab.com/msberends/AMR #
|
2018-12-16 22:45:12 +01:00
|
|
|
# #
|
|
|
|
# LICENCE #
|
2019-01-02 23:24:07 +01:00
|
|
|
# (c) 2019 Berends MS (m.s.berends@umcg.nl), Luz CF (c.f.luz@umcg.nl) #
|
2018-12-16 22:45:12 +01:00
|
|
|
# #
|
2019-01-02 23:24:07 +01:00
|
|
|
# This R package is free software; you can freely use and distribute #
|
|
|
|
# it for both personal and commercial purposes under the terms of the #
|
|
|
|
# GNU General Public License version 2.0 (GNU GPL-2), as published by #
|
|
|
|
# the Free Software Foundation. #
|
|
|
|
# #
|
|
|
|
# This R package was created for academic research and was publicly #
|
|
|
|
# released in the hope that it will be useful, but it comes WITHOUT #
|
|
|
|
# ANY WARRANTY OR LIABILITY. #
|
2019-04-05 18:47:39 +02:00
|
|
|
# Visit our website for more info: https://msberends.gitlab.io/AMR. #
|
2018-12-16 22:45:12 +01:00
|
|
|
# ==================================================================== #
|
|
|
|
|
2018-08-23 00:40:36 +02:00
|
|
|
context("count.R")
|
|
|
|
|
|
|
|
test_that("counts work", {
|
2019-08-27 16:45:42 +02:00
|
|
|
# AMX resistance in `example_isolates`
|
|
|
|
expect_equal(count_R(example_isolates$AMX), 683)
|
|
|
|
expect_equal(count_I(example_isolates$AMX), 3)
|
|
|
|
expect_equal(count_S(example_isolates$AMX), 543)
|
|
|
|
expect_equal(count_R(example_isolates$AMX) + count_I(example_isolates$AMX),
|
|
|
|
count_IR(example_isolates$AMX))
|
|
|
|
expect_equal(count_S(example_isolates$AMX) + count_I(example_isolates$AMX),
|
|
|
|
count_SI(example_isolates$AMX))
|
2018-08-23 00:40:36 +02:00
|
|
|
|
2018-10-12 16:35:18 +02:00
|
|
|
library(dplyr)
|
2019-08-27 16:45:42 +02:00
|
|
|
expect_equal(example_isolates %>% count_S(AMC), 1342)
|
|
|
|
expect_equal(example_isolates %>% count_S(AMC, GEN, only_all_tested = TRUE), 1660)
|
|
|
|
expect_equal(example_isolates %>% count_S(AMC, GEN, only_all_tested = FALSE), 1728)
|
|
|
|
expect_equal(example_isolates %>% count_all(AMC, GEN, only_all_tested = TRUE), 1798)
|
|
|
|
expect_equal(example_isolates %>% count_all(AMC, GEN, only_all_tested = FALSE), 1936)
|
|
|
|
expect_identical(example_isolates %>% count_all(AMC, GEN, only_all_tested = TRUE),
|
|
|
|
example_isolates %>% count_S(AMC, GEN, only_all_tested = TRUE) +
|
|
|
|
example_isolates %>% count_IR(AMC, GEN, only_all_tested = TRUE))
|
2018-08-23 00:40:36 +02:00
|
|
|
|
|
|
|
# count of cases
|
2019-08-27 16:45:42 +02:00
|
|
|
expect_equal(example_isolates %>%
|
2018-08-23 00:40:36 +02:00
|
|
|
group_by(hospital_id) %>%
|
2019-07-01 14:03:15 +02:00
|
|
|
summarise(cipro = count_SI(CIP),
|
|
|
|
genta = count_SI(GEN),
|
|
|
|
combination = count_SI(CIP, GEN)) %>%
|
2018-08-23 00:40:36 +02:00
|
|
|
pull(combination),
|
2019-07-01 14:03:15 +02:00
|
|
|
c(253, 465, 192, 558))
|
2018-08-23 00:40:36 +02:00
|
|
|
|
2018-10-16 09:59:31 +02:00
|
|
|
# count_df
|
|
|
|
expect_equal(
|
2019-08-27 16:45:42 +02:00
|
|
|
example_isolates %>% select(AMX) %>% count_df() %>% pull(value),
|
|
|
|
c(example_isolates$AMX %>% count_SI(),
|
|
|
|
example_isolates$AMX %>% count_R())
|
2018-10-16 09:59:31 +02:00
|
|
|
)
|
|
|
|
expect_equal(
|
2019-08-27 16:45:42 +02:00
|
|
|
example_isolates %>% select(AMX) %>% count_df(combine_IR = TRUE) %>% pull(value),
|
|
|
|
c(example_isolates$AMX %>% count_S(),
|
|
|
|
example_isolates$AMX %>% count_IR())
|
2018-10-16 09:59:31 +02:00
|
|
|
)
|
2019-05-13 10:10:16 +02:00
|
|
|
expect_equal(
|
2019-08-27 16:45:42 +02:00
|
|
|
example_isolates %>% select(AMX) %>% count_df(combine_SI = FALSE) %>% pull(value),
|
|
|
|
c(example_isolates$AMX %>% count_S(),
|
|
|
|
example_isolates$AMX %>% count_I(),
|
|
|
|
example_isolates$AMX %>% count_R())
|
2019-05-13 10:10:16 +02:00
|
|
|
)
|
2018-08-23 01:01:50 +02:00
|
|
|
|
2018-08-23 00:40:36 +02:00
|
|
|
# warning for speed loss
|
2019-08-27 16:45:42 +02:00
|
|
|
expect_warning(count_R(as.character(example_isolates$AMC)))
|
|
|
|
expect_warning(count_I(as.character(example_isolates$AMC)))
|
|
|
|
expect_warning(count_S(as.character(example_isolates$AMC,
|
|
|
|
example_isolates$GEN)))
|
|
|
|
expect_warning(count_S(example_isolates$AMC,
|
|
|
|
as.character(example_isolates$GEN)))
|
2018-08-23 00:40:36 +02:00
|
|
|
|
|
|
|
# check for errors
|
|
|
|
expect_error(count_IR("test", minimum = "test"))
|
|
|
|
expect_error(count_IR("test", as_percent = "test"))
|
|
|
|
expect_error(count_I("test", minimum = "test"))
|
|
|
|
expect_error(count_I("test", as_percent = "test"))
|
|
|
|
expect_error(count_S("test", minimum = "test"))
|
|
|
|
expect_error(count_S("test", as_percent = "test"))
|
|
|
|
|
2018-09-16 22:11:17 +02:00
|
|
|
expect_error(count_df(c("A", "B", "C")))
|
2019-08-27 16:45:42 +02:00
|
|
|
expect_error(count_df(example_isolates[,"date"]))
|
2018-09-16 22:11:17 +02:00
|
|
|
|
2018-08-23 00:40:36 +02:00
|
|
|
})
|