crosstabs | R Documentation |
Produces a 2-way table of counts and the corresponding chi-square test of independence or homogeneity.
crosstabs(formula, data)
formula |
a symbolic description of the model to be fit: ~ fac1 + fac2; where fac1 and fac2 are vectors to be crosstabulated and treated internally as factors. |
data |
an optional data frame containing the variables in the model. |
An invisible list containing the following components:
row.props |
a matrix of row proportions, i.e. cell counts divided by row marginals. |
col.props |
a matrix of column proportions, i.e. cell counts divided by column marginals. |
Totals |
a matrix containing the cell counts and the marginal totals. |
This function is deprecated and will be removed in future versions of the package.
##body image data:
data(body.df)
crosstabs(~ ethnicity + married, body.df)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.