You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#' @param ... Column name or tidyselect function. Select columns. Default is first column
73
73
#' @param type list type. Can be "1" (numeric), "a" (lowercase alphabetical), or "ABC" (uppercase alphabetical), "i" (lowercase Roman numerals), "I" (uppercase Roman numerals)
74
74
#' @param sep separator
75
+
#' @param merge If `TRUE`, list columns will be united with their respective text columns.
75
76
#'
76
77
#' @return data.frame
77
78
#' @export
78
79
#'
79
80
#' @examples
80
81
#' d <- data.frame(x = letters[1:5], y = letters[2:6])
#' @param significance_note If TRUE, place note at bottom of table that significant correlations are bolded.
411
426
#' @param output output type. Can be "flextable" or "tibble"
412
-
#' @param summary_functions A named list of functions that summarize data columns (e.g., mean, sd)
427
+
#' @param summary_functions Any named list of functions that summarize data columns (e.g., `list(Mean = mean, SD = sd)`). Can also be a character vector of function names (e.g., `c("n", "M", "SD")`). Functions available in a character vector: IQR, Interquartile Range, Kurtosis, MAD, Median Absolute Deviation, M, Mean, Med, Median, n, N, Quantile, Range, SD, Skewness, Var, Variance
413
428
#' @param keep_empty_star_columns Keep remove empty star columns (Default: `TRUE`)
0 commit comments