Crossings(vcdExtra)
Crossings()所属R语言包:vcdExtra
Crossings Interaction of Factors
横穿因素的相互作用
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Given two ordered factors in a square, n x n frequency table, Crossings creates an n-1 column matrix corresponding to different degrees of difficulty in crossing from one level to the next, as described by Goodman (1972).
一个正方形的nxn的频率表上的两个有序的因素,Crossings创建一个N-1列的矩阵对应不同程度的困难,从一个层面下,古德曼(1972)所描述的交叉。
用法----------Usage----------
Crossings(...)
参数----------Arguments----------
参数:...
Two factors
有两个因素
值----------Value----------
For two factors of n levels, returns a binary indicator matrix of n*n rows and n-1 columns.
n水平的两个因素,则返回一个二进制指示器矩阵n*n行n-1列。
(作者)----------Author(s)----------
Michael Friendly and Heather Turner
参考文献----------References----------
In: Proceedings of the Sixth Berkeley Symposium on Mathematical Statistics and Probability, Berkeley, CA: University of California Press, pp. 649-696.
参见----------See Also----------
glm, gnm for model fitting functions for frequency tables
glm,gnm模型拟合函数的频率表
Diag, Mult, Symm, Topo for similar extensions to terms in model formulas.
Diag,Mult,Symm,Topo类似的扩展模型公式。
实例----------Examples----------
data(Hauser79)
# display table[显示表]
structable(~Father+Son, data=Hauser79)
hauser.indep <- gnm(Freq ~ Father + Son, data=Hauser79, family=poisson)
hauser.CR <- update(hauser.indep, ~ . + Crossings(Father,Son))
summarise(hauser.CR)
hauser.CRdiag <- update(hauser.indep, ~ . + Crossings(Father,Son) + Diag(Father,Son))
summarise(hauser.CRdiag)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|