Lambda(x, y = NULL, direction = c("symmetric", "row", "column"), conf.level = NA, ...)
NULL
(default) or a vector with compatible dimensions to x. If y is provided, table(x, y, ...)
is calculated."symmetric"
(default), "row"
, "column"
(abbreviations are allowed).
If direction is set to "row"
then Lambda(R|C) (column dependent) will be reported.table
, allowing i.e. to set useNA.PairApply
to calculate pairwise lambdas. Use complete.cases
, if only the complete cases of a data.frame are to be used.GoodmanKruskalGamma
, SomersDelta
, StuartTauC
,
GoodmanKruskalTauA
, KendallTauB
, cor
# example from Goodman Kruskal (1954)
m <- as.table(cbind(c(1768,946,115), c(807,1387,438), c(189,746,288), c(47,53,16)))
dimnames(m) <- list(paste("A", 1:3), paste("B", 1:4))
m
# direction default is "symmetric"
Lambda(m)
Lambda(m, conf.level=0.95)
Lambda(m, direction="row")
Lambda(m, direction="column")
Run the code above in your browser using DataLab