2020-11-23 21:50:27 +01:00
|
|
|
# ==================================================================== #
|
|
|
|
# TITLE #
|
2021-02-02 23:57:35 +01:00
|
|
|
# Antimicrobial Resistance (AMR) Data Analysis for R #
|
2020-11-23 21:50:27 +01:00
|
|
|
# #
|
|
|
|
# SOURCE #
|
|
|
|
# https://github.com/msberends/AMR #
|
|
|
|
# #
|
|
|
|
# LICENCE #
|
2020-12-27 00:30:28 +01:00
|
|
|
# (c) 2018-2021 Berends MS, Luz CF et al. #
|
2020-11-23 21:50:27 +01:00
|
|
|
# Developed at the University of Groningen, the Netherlands, in #
|
|
|
|
# collaboration with non-profit organisations Certe Medical #
|
|
|
|
# Diagnostics & Advice, and University Medical Center Groningen. #
|
|
|
|
# #
|
|
|
|
# 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. #
|
|
|
|
# #
|
|
|
|
# Visit our website for the full manual and a complete tutorial about #
|
2021-02-02 23:57:35 +01:00
|
|
|
# how to conduct AMR data analysis: https://msberends.github.io/AMR/ #
|
2020-11-23 21:50:27 +01:00
|
|
|
# ==================================================================== #
|
2021-05-15 21:36:22 +02:00
|
|
|
|
2021-05-16 10:50:00 +02:00
|
|
|
expect_equal(AMR:::percentage(0.25), "25%")
|
|
|
|
expect_equal(AMR:::percentage(0.5), "50%")
|
|
|
|
expect_equal(AMR:::percentage(0.500, digits = 1), "50.0%")
|
|
|
|
expect_equal(AMR:::percentage(0.1234), "12.3%")
|
2021-05-15 21:36:22 +02:00
|
|
|
# round up 0.5
|
2021-05-16 10:50:00 +02:00
|
|
|
expect_equal(AMR:::percentage(0.0054), "0.5%")
|
|
|
|
expect_equal(AMR:::percentage(0.0055), "0.6%")
|
2021-05-15 21:36:22 +02:00
|
|
|
|
2021-05-16 10:50:00 +02:00
|
|
|
expect_equal(AMR:::strrep("A", 5), "AAAAA")
|
|
|
|
expect_equal(AMR:::strrep(c("A", "B"), c(5, 2)), c("AAAAA", "BB"))
|
|
|
|
expect_equal(AMR:::trimws(" test "), "test")
|
|
|
|
expect_equal(AMR:::trimws(" test ", "l"), "test ")
|
|
|
|
expect_equal(AMR:::trimws(" test ", "r"), " test")
|
2021-05-15 21:36:22 +02:00
|
|
|
|
2021-05-16 10:50:00 +02:00
|
|
|
expect_warning(AMR:::generate_warning_abs_missing(c("AMP", "AMX")))
|
|
|
|
expect_warning(AMR:::generate_warning_abs_missing(c("AMP", "AMX"), any = TRUE))
|
|
|
|
expect_warning(AMR:::get_column_abx(example_isolates, hard_dependencies = "FUS"))
|
|
|
|
expect_message(AMR:::get_column_abx(example_isolates, soft_dependencies = "FUS"))
|
|
|
|
if (pkg_is_available("dplyr")) {
|
|
|
|
expect_warning(AMR:::get_column_abx(rename(example_isolates, thisone = AMX), amox = "thisone", tmp = "thisone", verbose = TRUE))
|
|
|
|
expect_warning(AMR:::get_column_abx(rename(example_isolates, thisone = AMX), amox = "thisone", tmp = "thisone", verbose = FALSE))
|
2021-05-15 21:36:22 +02:00
|
|
|
}
|
|
|
|
|
2020-12-27 00:30:28 +01:00
|
|
|
|
2021-05-15 21:36:22 +02:00
|
|
|
# we rely on "grouped_tbl" being a class of grouped tibbles, so implement a test that checks for this:
|
2021-05-16 10:50:00 +02:00
|
|
|
if (pkg_is_available("dplyr")) {
|
|
|
|
expect_true(AMR:::is_null_or_grouped_tbl(example_isolates %>% group_by(hospital_id)))
|
2021-05-13 19:31:47 +02:00
|
|
|
}
|
2021-05-15 21:36:22 +02:00
|
|
|
|
|
|
|
|