View source: R/pairwise_multi.R
pairwise_multi | R Documentation |
Calculates multiple scores for every variable pair in a dataset.
pairwise_multi(
d,
scores = c("pair_cor", "pair_dcor", "pair_mine", "pair_ace", "pair_cancor", "pair_nmi",
"pair_uncertainty", "pair_chi"),
handle.na = TRUE
)
d |
dataframe |
scores |
a vector naming functions returning a |
handle.na |
If TRUE uses pairwise complete observations to calculate pairwise score, otherwise NAs not handled. |
tibble of class "pairwise"
iris1 <- iris
iris1$Sepal.Length <- cut(iris1$Sepal.Length,3)
pairwise_multi(iris1)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.