2018-02-21 11:52:31 +01:00
|
|
|
# ==================================================================== #
|
|
|
|
# TITLE #
|
|
|
|
# Antimicrobial Resistance (AMR) Analysis #
|
|
|
|
# #
|
|
|
|
# AUTHORS #
|
|
|
|
# Berends MS (m.s.berends@umcg.nl), Luz CF (c.f.luz@umcg.nl) #
|
|
|
|
# #
|
|
|
|
# LICENCE #
|
|
|
|
# This program is free software; you can redistribute it and/or modify #
|
|
|
|
# it under the terms of the GNU General Public License version 2.0, #
|
|
|
|
# as published by the Free Software Foundation. #
|
|
|
|
# #
|
|
|
|
# This program is distributed in the hope that it will be useful, #
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
|
|
|
|
# GNU General Public License for more details. #
|
|
|
|
# ==================================================================== #
|
|
|
|
|
2018-07-04 17:20:03 +02:00
|
|
|
# No export, no Rd
|
|
|
|
addin_insert_in <- function() {
|
|
|
|
rstudioapi::insertText(" %in% ")
|
|
|
|
}
|
|
|
|
|
|
|
|
# No export, no Rd
|
|
|
|
addin_insert_like <- function() {
|
|
|
|
rstudioapi::insertText(" %like% ")
|
|
|
|
}
|
|
|
|
|
2018-03-19 12:43:22 +01:00
|
|
|
# No export, no Rd
|
2018-04-18 12:24:54 +02:00
|
|
|
percent <- function(x, round = 1, force_zero = FALSE, ...) {
|
2018-11-24 20:25:09 +01:00
|
|
|
|
|
|
|
# https://stackoverflow.com/a/12688836/4575331
|
|
|
|
round2 <- function(x, n) (trunc((abs(x) * 10 ^ n) + 0.5) / 10 ^ n) * sign(x)
|
|
|
|
|
|
|
|
val <- round2(x, round + 2) # round up 0.5
|
|
|
|
val <- round(x = val * 100, digits = round) # remove floating point error
|
|
|
|
|
|
|
|
if (force_zero == TRUE) {
|
|
|
|
if (any(val == as.integer(val) & !is.na(val))) {
|
|
|
|
# add zeroes to all integers
|
|
|
|
val[val == as.integer(as.character(val))] <- paste0(val[val == as.integer(val)], ".", strrep(0, round))
|
|
|
|
}
|
|
|
|
# add extra zeroes if needed
|
|
|
|
val_decimals <- nchar(gsub(".*[.](.*)", "\\1", as.character(val)))
|
|
|
|
val[val_decimals < round] <- paste0(val[val_decimals < round], strrep(0, max(0, round - val_decimals)))
|
2018-04-18 12:24:54 +02:00
|
|
|
}
|
2018-05-02 14:56:25 +02:00
|
|
|
pct <- base::paste0(val, "%")
|
2018-11-24 20:25:09 +01:00
|
|
|
pct[pct %in% c("NA%", "NaN%")] <- NA_character_
|
2018-05-02 14:56:25 +02:00
|
|
|
pct
|
2018-04-18 12:24:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
check_available_columns <- function(tbl, col.list, info = TRUE) {
|
|
|
|
# check columns
|
|
|
|
col.list <- col.list[!is.na(col.list)]
|
|
|
|
names(col.list) <- col.list
|
|
|
|
col.list.bak <- col.list
|
|
|
|
# are they available as upper case or lower case then?
|
|
|
|
for (i in 1:length(col.list)) {
|
|
|
|
if (toupper(col.list[i]) %in% colnames(tbl)) {
|
|
|
|
col.list[i] <- toupper(col.list[i])
|
|
|
|
} else if (tolower(col.list[i]) %in% colnames(tbl)) {
|
|
|
|
col.list[i] <- tolower(col.list[i])
|
|
|
|
} else if (!col.list[i] %in% colnames(tbl)) {
|
|
|
|
col.list[i] <- NA
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!all(col.list %in% colnames(tbl))) {
|
|
|
|
if (info == TRUE) {
|
|
|
|
warning('These columns do not exist and will be ignored: ',
|
|
|
|
col.list.bak[!(col.list %in% colnames(tbl))] %>% toString(),
|
2018-04-25 15:33:58 +02:00
|
|
|
'.\nTHIS MAY STRONGLY INFLUENCE THE OUTCOME.',
|
2018-04-18 12:24:54 +02:00
|
|
|
immediate. = TRUE,
|
|
|
|
call. = FALSE)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
col.list
|
|
|
|
}
|
|
|
|
|
|
|
|
# Coefficient of variation (CV)
|
|
|
|
cv <- function(x, na.rm = TRUE) {
|
2018-06-29 09:06:47 +02:00
|
|
|
stats::sd(x, na.rm = na.rm) / base::abs(base::mean(x, na.rm = na.rm))
|
2018-04-18 12:24:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
# Coefficient of dispersion, or coefficient of quartile variation (CQV).
|
|
|
|
# (Bonett et al., 2006: Confidence interval for a coefficient of quartile variation).
|
|
|
|
cqv <- function(x, na.rm = TRUE) {
|
2018-07-03 11:30:40 +02:00
|
|
|
fives <- stats::fivenum(x, na.rm = na.rm)
|
|
|
|
(fives[4] - fives[2]) / (fives[4] + fives[2])
|
2018-04-18 12:24:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
# show bytes as kB/MB/GB
|
|
|
|
# size_humanreadable(123456) # 121 kB
|
|
|
|
# size_humanreadable(12345678) # 11.8 MB
|
|
|
|
size_humanreadable <- function(bytes, decimals = 1) {
|
|
|
|
bytes <- bytes %>% as.double()
|
|
|
|
# Adapted from:
|
|
|
|
# http://jeffreysambells.com/2012/10/25/human-readable-filesize-php
|
|
|
|
size <- c('B','kB','MB','GB','TB','PB','EB','ZB','YB')
|
|
|
|
factor <- floor((nchar(bytes) - 1) / 3)
|
|
|
|
# added slight improvement; no decimals for B and kB:
|
|
|
|
decimals <- rep(decimals, length(bytes))
|
|
|
|
decimals[size[factor + 1] %in% c('B', 'kB')] <- 0
|
|
|
|
|
|
|
|
out <- paste(sprintf(paste0("%.", decimals, "f"), bytes / (1024 ^ factor)), size[factor + 1])
|
|
|
|
out
|
2018-02-21 11:52:31 +01:00
|
|
|
}
|