This function uses the correlation::correlation()
to generate the correlation table.
cor_test(
data,
cols,
...,
digits = 3,
method = "pearson",
p_adjust = "none",
streamline = FALSE,
quite = FALSE,
return_result = FALSE
)
a data.frame
of the correlation table
data frame
correlation items. Support dplyr::select()
syntax.
additional arguments passed to correlation::correlation(). See ?correlation::correlation. Note that the return data.frame from correlation::correlation() must contains r
and p
(e.g., passing baysesian = TRUE
will not work)
number of digits to round to
Default is "pearson". Options are "kendall", "spearman","biserial", "polychoric", "tetrachoric", "biweight", "distance", "percentage", "blomqvist", "hoeffding", "gamma", "gaussian","shepherd", or "auto". See ?correlation::correlation for detail
Default is "holm". Options are "hochberg", "hommel", "bonferroni", "BH", "BY", "fdr", "somers" or "none". See ?stats::p.adjust for more detail
print streamlined output.
suppress printing output
If it is set to TRUE
, it will return the data frame of the correlation table
cor_test(iris, where(is.numeric))
Run the code above in your browser using DataLab