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 dimension A column you want to use as a dimension to calculate the correlations.
46
46
#' @param value A column for the values you want to use to calculate the correlations.
47
47
#' @param use Operation type for dealing with missing values. This can be one of "everything", "all.obs", "complete.obs", "na.or.complete", or "pairwise.complete.obs"
48
-
#' @param method Method of calculation. This can be one of "pearson", "kendall", "spearman", or "polychoric".
48
+
#' @param method Method of calculation. This can be one of "auto", "pearson", "kendall", "spearman", "polychoric", or "mixed".
49
49
#' @param fun.aggregate Set an aggregate function when there are multiple entries for the key column per each category.
50
50
#' @param time_unit Unit of time to aggregate key_col if key_col is Date or POSIXct. NULL doesn't aggregate.
51
51
#' @return correlations between pairs of groups
@@ -175,7 +175,7 @@ do_cor.kv_ <- function(df,
175
175
#' @param df data frame in tidy format
176
176
#' @param ... Arguments to select columns to calculate correlation.
177
177
#' @param use Operation type for dealing with missing values. This can be one of "everything", "all.obs", "complete.obs", "na.or.complete", or "pairwise.complete.obs"
178
-
#' @param method Method of calculation. This can be one of "pearson", "kendall", "spearman", or "polychoric".
178
+
#' @param method Method of calculation. This can be one of "auto", "pearson", "kendall", "spearman", "polychoric", or "mixed".
0 commit comments