Makes several common measures of association for contingency tables. The p-values are obtained through simulation.
make_assoc_stats(
x,
y,
chisq = FALSE,
phi = FALSE,
cramersV = TRUE,
lambda = FALSE,
gamma = TRUE,
d = FALSE,
taub = TRUE,
n = 1000,
weight = NULL
)
The row-variable in a contingency table
The column-variable in a contingency table
Logical indicating whether the chi-squared statistic should be produced.
Logical indicating whether the phi statistic should be produced.
Logical indicating whether the Cramer's V statistic should be produced.
Logical indicating whether the lambda statistic should be produced.
Logical indicating whether the gamma statistic for ordinal data should be produced.
Logical indicating whether Somer's D for ordinal data should be produced.
Logical indicating whether Kendall's Tau-b statistic should be produced.
Number of iterations in the simulation.
Vector of weights used to generate the table.
A matrix of statistics and p-values.