#' Generate frequency where each subject is only counted once for the maximum
#' VAR
#'
#' @param column the variable to perform stats on, this also contains
#' the class of the column based on the data file the column came from
#' @param group the groups to compare for the ANOVA
#' @param data the data to use
#' @param totals the totals data frame that contains denominator N's use when
#' calculating column percentages
#'
#' @return a frequency table of grouped variables
#'
#' @family tableGen Functions
#' @keywords tabGen
#'
#' @noRd
app_max_freq <- function(column, group, data, totals) {
UseMethod("app_max_freq", column)
}
#' if ADSL supplied look for the column to take frequency of
#' and look for a grouping variable to group_by
#' if data is grouped add total column to the grouped data
#'
#' @importFrom rlang sym !!
#' @import dplyr
#'
#' @return frequency table of ADSL column
#' @rdname app_max_freq
#'
#' @family tableGen Functions
#'
#' @noRd
app_max_freq.default <- app_max_freq.OCCDS <- app_max_freq.ADAE <- app_max_freq.ADSL <-
function(column, group = NULL, data, totals) {
# # ########## ######### ######## #########
# column <- "AVISITf2" # "AESEV"
# group = NULL "TRT01P"
# data = tg_data #ae_data #%>% filter(SAFFL == 'Y')
# totals <- no_grp_tots #total_df
# # ########## ######### ######## #########
# column is the variable selected on the left-hand side
column <- rlang::sym(as.character(column))
VARN <- paste0(column,"N")
if(is.character(data[[column]])) {
stop(paste("Can't calculate max frequency per patient because ", column, " is of class 'character' and ", VARN," doesn't exist in data"))
}
# if column is categorical 'VAR', then check to make sure 'VARN' exists. If not, error
if (is.factor(data[[column]])) {
if(!(VARN %in% colnames(data))){
stop(paste("Can't calculate max frequency per patient because ", VARN, " doesn't exist in data"))
}
}
# The alternative is that VAR is numeric, so we can use that directly in max freq
total <-
data %>%
filter(!is.na(!!column)) %>% # how to incorporate filter on AOCCIFL?
group_by(USUBJID) %>%
slice_max(!!column) %>%
ungroup() %>%
distinct(USUBJID, !!column) %>%
group_by(!!column) %>%
summarize(n = n_distinct(USUBJID)) %>%
ungroup() %>%
mutate(n_tot = as.integer(totals[nrow(totals),"n_tot"]),
prop = n / n_tot,
x = paste0(n, ' (', sprintf("%.1f", round(prop*100, 1)), ')')
) %>%
select(!!column, x)
if (is.null(group)) {
total
} else {
if (group == column) {
stop(glue::glue("Cannot calculate non missing subject counts for {column} when also set as grouping variable."))
}
group <- rlang::sym(group)
grp_lvls <- get_levels(data[[group]])
xyz <- data.frame(grp_lvls) %>%
rename_with(~paste(group), grp_lvls)
grp_tot <- xyz %>%
left_join(
totals %>% filter(!!group != "Total") %>%
# data %>%
# # filter(!is.na(!!column)) %>% # don't filter here.
# group_by(!!group) %>%
# summarize(n_tot = n_distinct(USUBJID)) %>%
# ungroup() %>%
tidyr::crossing(
data %>%
filter(!is.na(!!column)) %>% # how to incorporate filter on AOCCIFL?
distinct(!!column)
)
)
groups <- grp_tot %>%
left_join(
data %>%
filter(!is.na(!!column)) %>% # how to incorporate filter on AOCCIFL?
group_by(USUBJID) %>%
slice_max(!!column) %>%
ungroup() %>%
distinct(USUBJID, !!group, !!column) %>%
group_by(!!group, !!column) %>%
summarize(n = n_distinct(USUBJID)) %>%
ungroup()
) %>%
mutate(n = tidyr::replace_na(n, 0),
prop = n / n_tot,
v = paste0(n, ' (', sprintf("%.1f", round(prop*100, 1)), ')')
) %>%
select(-n, -prop, -n_tot) %>%
pivot_wider(id_cols = !!column, names_from = !!group, values_from = v)
cbind(groups, total$x)
}
}
#' @return NULL
#' @rdname app_max_freq
#'
#' @family tableGen Functions
#'
#' @noRd
app_max_freq.BDS <- function(column, group = NULL, data, totals) {
rlang::abort(glue::glue(
"Can't calculate Max Frequency for for BDS variables"
))
}
#' @return NULL
#' @rdname app_max_freq
#'
#' @family tableGen Functions
#'
#' @noRd
app_max_freq.custom <- function(column, group, data, totals) {
rlang::abort(glue::glue(
"Can't calculate Max Frequency for custom class data set."
))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.