crosstabs(s20x)
crosstabs()所属R语言包:s20x
Crosstabulation of two variables
交叉表的两个变量
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Produces a 2-way table of counts and the corresponding
产生一个2路表的计数和相应的
用法----------Usage----------
crosstabs(formula, data)
参数----------Arguments----------
参数: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.
一个象征性的模型来描述是合适的:~FAC1 + fac2,FAC1和fac2是矢量,交叉制表和内部处理的因素。
参数:data
an optional data frame containing the variables in the model.
一个可选的数据框包含在模型中的变量。
值----------Value----------
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. </table>
矩阵含有单元计数和边际总数。 </ TABLE>
实例----------Examples----------
##body image data:[#主体图像数据:]
data(body.df)
crosstabs(~ ethnicity + married, body.df)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|