AMR/tests/testthat/test-first_isolate.R

201 lines
7.3 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 #
# (c) 2018-2020 Berends MS, Luz CF et al. #
# #
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. #
# #
# We created this package for both routine data analysis and academic #
# research and it 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-07-23 14:14:03 +02:00
context("first_isolate.R")
2018-03-27 17:43:42 +02:00
test_that("first isolates work", {
2019-10-15 14:35:23 +02:00
skip_on_cran()
2019-02-18 02:33:37 +01:00
# first isolates
2018-04-02 16:05:09 +02:00
expect_equal(
2018-06-19 10:05:38 +02:00
sum(
first_isolate(x = example_isolates,
2018-04-02 16:05:09 +02:00
col_date = "date",
col_patient_id = "patient_id",
2018-08-31 13:36:19 +02:00
col_mo = "mo",
info = TRUE),
2018-07-02 09:34:20 +02:00
na.rm = TRUE),
1317)
2018-06-19 10:05:38 +02:00
2019-10-11 17:21:02 +02:00
# first weighted isolates
2020-05-16 13:05:47 +02:00
ex_iso_with_keyab <- example_isolates
ex_iso_with_keyab$keyab <- key_antibiotics(example_isolates, warnings = FALSE)
2018-06-19 10:05:38 +02:00
expect_equal(
suppressWarnings(
sum(
2020-05-16 13:05:47 +02:00
first_isolate(x = ex_iso_with_keyab,
2019-10-11 17:21:02 +02:00
# let syntax determine arguments automatically
2018-12-14 09:31:53 +01:00
type = "keyantibiotics",
info = TRUE),
na.rm = TRUE)),
1413)
2020-05-16 13:05:47 +02:00
2019-02-18 02:33:37 +01:00
# when not ignoring I
expect_equal(
suppressWarnings(
sum(
2020-05-16 13:05:47 +02:00
first_isolate(x = ex_iso_with_keyab,
col_date = "date",
col_patient_id = "patient_id",
2018-08-31 13:36:19 +02:00
col_mo = "mo",
col_keyantibiotics = "keyab",
ignore_I = FALSE,
type = "keyantibiotics",
info = TRUE),
na.rm = TRUE)),
1436)
2019-02-18 02:33:37 +01:00
# when using points
2018-07-02 09:34:20 +02:00
expect_equal(
suppressWarnings(
sum(
2020-05-16 13:05:47 +02:00
first_isolate(x = ex_iso_with_keyab,
2018-07-02 09:34:20 +02:00
col_date = "date",
col_patient_id = "patient_id",
2018-08-31 13:36:19 +02:00
col_mo = "mo",
2018-07-02 09:34:20 +02:00
col_keyantibiotics = "keyab",
type = "points",
info = TRUE),
na.rm = TRUE)),
1417)
2018-04-03 11:08:31 +02:00
2019-02-18 02:33:37 +01:00
# first non-ICU isolates
2018-04-20 13:45:34 +02:00
expect_equal(
sum(
first_isolate(example_isolates,
2018-08-31 13:36:19 +02:00
col_mo = "mo",
2018-06-19 10:05:38 +02:00
col_date = "date",
col_patient_id = "patient_id",
col_icu = "ward_icu",
info = TRUE,
icu_exclude = TRUE),
na.rm = TRUE),
2020-05-16 13:05:47 +02:00
891)
2018-04-20 13:45:34 +02:00
2018-04-03 11:08:31 +02:00
# set 1500 random observations to be of specimen type 'Urine'
random_rows <- sample(x = 1:2000, size = 1500, replace = FALSE)
2020-05-16 13:05:47 +02:00
x <- example_isolates
x$specimen <- "Other"
x[random_rows, "specimen"] <- "Urine"
2018-06-19 10:05:38 +02:00
expect_lt(
sum(
2020-05-16 13:05:47 +02:00
first_isolate(x = x,
2018-06-19 10:05:38 +02:00
col_date = "date",
col_patient_id = "patient_id",
2018-08-31 13:36:19 +02:00
col_mo = "mo",
2018-06-19 10:05:38 +02:00
col_specimen = "specimen",
filter_specimen = "Urine",
info = TRUE),
na.rm = TRUE),
2018-04-03 11:08:31 +02:00
1501)
2018-07-02 09:34:20 +02:00
# same, but now exclude ICU
expect_lt(
sum(
2020-05-16 13:05:47 +02:00
first_isolate(x = x,
2018-07-02 09:34:20 +02:00
col_date = "date",
col_patient_id = "patient_id",
2018-08-31 13:36:19 +02:00
col_mo = "mo",
2018-07-02 09:34:20 +02:00
col_specimen = "specimen",
filter_specimen = "Urine",
col_icu = "ward_icu",
icu_exclude = TRUE,
info = TRUE),
na.rm = TRUE),
1501)
2018-08-23 21:27:15 +02:00
# "No isolates found"
2020-05-16 13:05:47 +02:00
test_iso <- example_isolates
test_iso$specimen <- "test"
expect_message(first_isolate(test_iso,
"date",
"patient_id",
col_mo = "mo",
col_specimen = "specimen",
filter_specimen = "something_unexisting",
info = TRUE))
# printing of exclusion message
2020-05-16 13:05:47 +02:00
expect_message(first_isolate(example_isolates,
col_date = "date",
2018-12-22 22:39:34 +01:00
col_mo = "mo",
col_patient_id = "patient_id",
col_testcode = "gender",
testcodes_exclude = "M",
info = TRUE))
# errors
2018-08-31 13:36:19 +02:00
expect_error(first_isolate("date", "patient_id", col_mo = "mo"))
expect_error(first_isolate(example_isolates,
col_date = "non-existing col",
2018-08-31 13:36:19 +02:00
col_mo = "mo"))
2018-10-23 11:15:05 +02:00
# look for columns itself
expect_message(first_isolate(example_isolates))
expect_message(first_isolate(example_isolates %>%
2018-12-22 22:39:34 +01:00
mutate(mo = as.character(mo)) %>%
left_join_microorganisms()))
2018-10-23 11:15:05 +02:00
2018-09-01 21:19:46 +02:00
# if mo is not an mo class, result should be the same
expect_identical(example_isolates %>%
2018-12-22 22:39:34 +01:00
mutate(mo = as.character(mo)) %>%
first_isolate(col_date = "date",
col_mo = "mo",
col_patient_id = "patient_id"),
example_isolates %>%
2018-09-01 21:19:46 +02:00
first_isolate(col_date = "date",
col_mo = "mo",
col_patient_id = "patient_id"))
# missing dates should be no problem
df <- example_isolates
2019-05-13 14:56:23 +02:00
df[1:100, "date"] <- NA
expect_equal(
sum(
first_isolate(x = df,
col_date = "date",
col_patient_id = "patient_id",
col_mo = "mo",
info = TRUE),
na.rm = TRUE),
1322)
# unknown MOs
2020-05-16 13:05:47 +02:00
test_unknown <- example_isolates
test_unknown$mo <- ifelse(test_unknown$mo == "B_ESCHR_COLI", "UNKNOWN", test_unknown$mo)
expect_equal(sum(first_isolate(test_unknown, include_unknown = FALSE)),
1062)
2020-05-16 13:05:47 +02:00
expect_equal(sum(first_isolate(test_unknown, include_unknown = TRUE)),
1529)
2020-05-16 13:05:47 +02:00
test_unknown$mo <- ifelse(test_unknown$mo == "UNKNOWN", NA, test_unknown$mo)
expect_equal(sum(first_isolate(test_unknown)),
1062)
2020-05-18 10:30:53 +02:00
# shortcuts
expect_identical(filter_first_isolate(example_isolates),
subset(example_isolates, first_isolate(example_isolates)))
ex <- example_isolates
ex$keyab <- key_antibiotics(ex)
expect_identical(filter_first_weighted_isolate(example_isolates),
subset(example_isolates, first_isolate(ex)))
2018-03-27 17:43:42 +02:00
})