xchisq.test | R Documentation |
This augmented version of chisq.test()
provides more verbose
output.
xchisq.test(
x,
y = NULL,
correct = TRUE,
p = rep(1/length(x), length(x)),
rescale.p = FALSE,
simulate.p.value = FALSE,
B = 2000,
data = environment(x)
)
x , y , correct , p , rescale.p , simulate.p.value , B |
as in |
data |
a data frame for use when |
chisq.test()
# Physicians' Health Study data
phs <- cbind(c(104,189),c(10933,10845))
rownames(phs) <- c("aspirin","placebo")
colnames(phs) <- c("heart attack","no heart attack")
phs
xchisq.test(phs)
xchisq.test(sex ~ substance, data = HELPrct)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.