AMR/tests/testthat/test-portion.R

122 lines
5.7 KiB
R
Raw Normal View History

# ==================================================================== #
# TITLE #
# Antimicrobial Resistance (AMR) Analysis #
# #
2019-01-02 23:24:07 +01:00
# SOURCE #
# https://gitlab.com/msberends/AMR #
# #
# 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) #
# #
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-08-10 15:01:05 +02:00
context("portion.R")
2018-07-13 17:23:46 +02:00
2018-08-12 17:44:06 +02:00
test_that("portions works", {
# AMX resistance in `example_isolates`
expect_equal(portion_R(example_isolates$AMX), 0.5557364, tolerance = 0.0001)
expect_equal(portion_I(example_isolates$AMX), 0.002441009, tolerance = 0.0001)
expect_equal(1 - portion_R(example_isolates$AMX) - portion_I(example_isolates$AMX),
portion_S(example_isolates$AMX))
expect_equal(portion_R(example_isolates$AMX) + portion_I(example_isolates$AMX),
portion_IR(example_isolates$AMX))
expect_equal(portion_S(example_isolates$AMX) + portion_I(example_isolates$AMX),
portion_SI(example_isolates$AMX))
2019-05-10 16:44:59 +02:00
expect_equal(example_isolates %>% portion_SI(AMC),
0.7626397,
2019-02-08 16:06:54 +01:00
tolerance = 0.0001)
expect_equal(example_isolates %>% portion_SI(AMC, GEN),
0.9408,
2019-02-08 16:06:54 +01:00
tolerance = 0.0001)
expect_equal(example_isolates %>% portion_SI(AMC, GEN, only_all_tested = TRUE),
0.9382647,
2019-02-08 16:06:54 +01:00
tolerance = 0.0001)
2018-08-23 00:40:36 +02:00
2018-08-03 14:49:29 +02:00
# percentages
expect_equal(example_isolates %>%
2018-08-03 14:49:29 +02:00
group_by(hospital_id) %>%
2019-05-10 16:44:59 +02:00
summarise(R = portion_R(CIP, as_percent = TRUE),
I = portion_I(CIP, as_percent = TRUE),
S = portion_S(CIP, as_percent = TRUE),
n = n_rsi(CIP),
2018-08-03 14:49:29 +02:00
total = n()) %>%
pull(n) %>%
sum(),
2018-09-24 23:33:29 +02:00
1409)
2018-08-03 14:49:29 +02:00
2018-05-02 14:56:25 +02:00
# count of cases
expect_equal(example_isolates %>%
2018-05-02 14:56:25 +02:00
group_by(hospital_id) %>%
summarise(cipro_p = portion_SI(CIP, as_percent = TRUE),
cipro_n = n_rsi(CIP),
genta_p = portion_SI(GEN, as_percent = TRUE),
genta_n = n_rsi(GEN),
combination_p = portion_SI(CIP, GEN, as_percent = TRUE),
2019-05-10 16:44:59 +02:00
combination_n = n_rsi(CIP, GEN)) %>%
2018-05-02 14:56:25 +02:00
pull(combination_n),
c(305, 617, 241, 711))
2018-07-17 10:32:26 +02:00
expect_warning(portion_R(as.character(example_isolates$AMC)))
expect_warning(portion_S(as.character(example_isolates$AMC)))
expect_warning(portion_S(as.character(example_isolates$AMC,
example_isolates$GEN)))
expect_warning(n_rsi(as.character(example_isolates$AMC,
example_isolates$GEN)))
expect_equal(suppressWarnings(n_rsi(as.character(example_isolates$AMC,
example_isolates$GEN))),
2019-02-08 16:06:54 +01:00
1879)
2018-07-17 10:32:26 +02:00
2018-07-30 00:57:49 +02:00
# check for errors
2018-08-10 15:01:05 +02:00
expect_error(portion_IR("test", minimum = "test"))
expect_error(portion_IR("test", as_percent = "test"))
expect_error(portion_I("test", minimum = "test"))
expect_error(portion_I("test", as_percent = "test"))
expect_error(portion_S("test", minimum = "test"))
expect_error(portion_S("test", as_percent = "test"))
expect_error(portion_S("test", also_single_tested = TRUE))
2018-07-30 00:57:49 +02:00
# check too low amount of isolates
expect_identical(suppressWarnings(portion_R(example_isolates$AMX, minimum = nrow(example_isolates) + 1)),
2018-08-03 14:49:29 +02:00
NA)
expect_identical(suppressWarnings(portion_I(example_isolates$AMX, minimum = nrow(example_isolates) + 1)),
2018-07-30 00:57:49 +02:00
NA)
expect_identical(suppressWarnings(portion_S(example_isolates$AMX, minimum = nrow(example_isolates) + 1)),
2018-07-30 00:57:49 +02:00
NA)
# warning for speed loss
expect_warning(portion_R(as.character(example_isolates$GEN)))
expect_warning(portion_I(as.character(example_isolates$GEN)))
expect_warning(portion_S(example_isolates$AMC, as.character(example_isolates$GEN)))
2018-08-12 17:44:06 +02:00
# portion_df
expect_equal(
example_isolates %>% select(AMX) %>% portion_df() %>% pull(value),
c(example_isolates$AMX %>% portion_SI(),
example_isolates$AMX %>% portion_R())
2018-08-12 17:44:06 +02:00
)
2018-10-16 09:59:31 +02:00
expect_equal(
example_isolates %>% select(AMX) %>% portion_df(combine_IR = TRUE) %>% pull(value),
c(example_isolates$AMX %>% portion_S(),
example_isolates$AMX %>% portion_IR())
2018-10-16 09:59:31 +02:00
)
2019-05-13 10:10:16 +02:00
expect_equal(
example_isolates %>% select(AMX) %>% portion_df(combine_SI = FALSE) %>% pull(value),
c(example_isolates$AMX %>% portion_S(),
example_isolates$AMX %>% portion_I(),
example_isolates$AMX %>% portion_R())
2019-05-13 10:10:16 +02:00
)
2019-08-07 15:37:39 +02:00
expect_error(portion_df(c("A", "B", "C")))
expect_error(portion_df(example_isolates[,"date"]))
2018-07-17 11:18:36 +02:00
})