chisq | R Documentation |
Calculate a p-value for a chi-square test by Monte Carlo simulation.
chisq(tab, n.sim = 1000)
tab |
A matrix of counts. |
n.sim |
Number of samples of permuted tables to consider. |
This is like the function stats::chisq.test()
, but
calculates an approximate P-value rather than refering to
asymptotics. This will be better for large, sparse tables.
A single number: the P-value testing independence of rows and columns in the table.
stats::chisq.test()
, stats::fisher.test()
, fisher()
TeaTasting <- matrix(c(3,1,1,3),nrow=2)
chisq(TeaTasting,1000)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.