cramer.test | R Documentation |
Computes the Cramer's association coefficient between 2 nominal variables, its confidence interval (by bootstraping) and tests for its significance.
cramer.test(x, y, nrep = 1000, conf.level = 0.95)
x |
a contingency table ('matrix' or 'table' object). |
y |
ignored if |
nrep |
number of replicates for bootstraping. |
conf.level |
confidence level. |
method |
name of the test. |
statistic |
test statistics. |
parameter |
test degrees of freedom. |
p.value |
test p-value. |
data.name |
a character string giving the names of the data. |
estimate |
Cramer's coefficient. |
conf.level |
confidence level. |
rep |
number of replicates. |
conf.int |
confidence interval. |
alternative |
a character string giving the alternative hypothesis, always |
null.value |
the value of the association measure under the null hypothesis, always 0. |
Maxime HERVE <maxime.herve@univ-rennes1.fr>
boot
var1 <- sample(LETTERS[1:3],30,replace=TRUE)
var2 <- sample(letters[1:3],30,replace=TRUE)
cramer.test(var1,var2)
# or cramer.test(table(var1,var2))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.