mirror of https://github.com/msberends/AMR.git
69 lines
3.0 KiB
R
69 lines
3.0 KiB
R
# ==================================================================== #
|
|
# TITLE #
|
|
# Antimicrobial Resistance (AMR) Analysis #
|
|
# #
|
|
# SOURCE #
|
|
# https://gitlab.com/msberends/AMR #
|
|
# #
|
|
# LICENCE #
|
|
# (c) 2019 Berends MS (m.s.berends@umcg.nl), Luz CF (c.f.luz@umcg.nl) #
|
|
# #
|
|
# 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. #
|
|
# Visit our website for more info: https://msberends.gitab.io/AMR. #
|
|
# ==================================================================== #
|
|
|
|
context("ggplot_rsi.R")
|
|
|
|
test_that("ggplot_rsi works", {
|
|
|
|
skip_if_not("ggplot2" %in% rownames(installed.packages()))
|
|
|
|
library(dplyr)
|
|
library(ggplot2)
|
|
|
|
# data should be equal
|
|
expect_equal(
|
|
(septic_patients %>% select(amcl, cipr) %>% ggplot_rsi())$data %>%
|
|
summarise_all(portion_IR) %>% as.double(),
|
|
septic_patients %>% select(amcl, cipr) %>%
|
|
summarise_all(portion_IR) %>% as.double()
|
|
)
|
|
|
|
expect_equal(
|
|
(septic_patients %>% select(amcl, cipr) %>% ggplot_rsi(x = "Interpretation", facet = "Antibiotic"))$data %>%
|
|
summarise_all(portion_IR) %>% as.double(),
|
|
septic_patients %>% select(amcl, cipr) %>%
|
|
summarise_all(portion_IR) %>% as.double()
|
|
)
|
|
|
|
expect_equal(
|
|
(septic_patients %>% select(amcl, cipr) %>% ggplot_rsi(x = "Antibiotic", facet = "Interpretation"))$data %>%
|
|
summarise_all(portion_IR) %>% as.double(),
|
|
septic_patients %>% select(amcl, cipr) %>%
|
|
summarise_all(portion_IR) %>% as.double()
|
|
)
|
|
|
|
expect_equal(
|
|
(septic_patients %>% select(amcl, cipr) %>% ggplot_rsi(x = "Antibiotic",
|
|
facet = "Interpretation",
|
|
fun = count_df))$data %>%
|
|
summarise_all(count_IR) %>% as.double(),
|
|
septic_patients %>% select(amcl, cipr) %>%
|
|
summarise_all(count_IR) %>% as.double()
|
|
)
|
|
|
|
expect_equal(colnames(getlbls(septic_patients %>% select(amcl, cipr))),
|
|
c("Interpretation", "Antibiotic", "Value", "lbl"))
|
|
|
|
expect_error(ggplot_rsi(septic_patients, fun = "invalid"))
|
|
expect_error(geom_rsi(septic_patients, fun = "invalid"))
|
|
|
|
})
|