chisq.residuals | R Documentation |
Return the raw, standardized or Pearson's residuals (the default) of a chi-squared test on a two-way frequency table.
chisq.residuals(tab, digits = 2, std = FALSE, raw = FALSE)
tab |
frequency table |
digits |
number of digits to display |
std |
if |
raw |
if |
This function is just a wrapper around the chisq.test
base R function. See this function's help page
for details on the computation.
chisq.test
## Sample table data(Titanic) tab <- apply(Titanic, c(1,4), sum) ## Pearson residuals chisq.residuals(tab) ## Standardized residuals chisq.residuals(tab, std = TRUE) ## Raw residuals chisq.residuals(tab, raw = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.