View source: R/pairwise_union.R
pairwise_union | R Documentation |
Calculates the pairwise probability of union. This is equivalent to the normalized hamming distance.
pairwise_union(data, cols, case_weights)
data |
A data frame. |
cols |
Columns to analyze. |
case_weights |
An optional column of case weights. |
Metric: Probability
Symmetrical: Yes
Upper Limit: 1
Lower Limit: 0
B | |||
1 | 0 | ||
A | 1 | a | b |
0 | c | d | |
Discordant = (b+c)/N
A matrix.
res <- pairwise_union(
data = FoodSample,
cols = Bisque:Turkey
)
print(res)
tidy(res)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.