ordinal.gamma(rpartOrdinal)
ordinal.gamma()所属R语言包:rpartOrdinal
Ordinal Measure of Association: The Gamma Statistic
序测量协会:伽玛统计
译者:生物统计家园网 机器人LoveR
描述----------Description----------
The gamma function estimates the gamma statistic, which is a measure
伽玛函数估计的的伽马统计,这是一个衡量
用法----------Usage----------
ordinal.gamma(x, y)
参数----------Arguments----------
参数:x
is an ordered factor
是一个有序的因素
参数:y
is an ordered factor
是一个有序的因素
Details
详细信息----------Details----------
The ordinal.gamma function estimates the ordinal measure of association gamma statistic.
协会伽玛统计ordinal.gamma函数估计的顺序措施。
(作者)----------Author(s)----------
Kellie J. Archer, kjarcher@vcu.edu
参考文献----------References----------
实例----------Examples----------
### Table 2.8 in Agresti[##表2.8阿格雷斯蒂]
library(rpartOrdinal)
job.satis<-factor(c(1,rep(2,3),rep(3,10),rep(4,6),
rep(1,2),rep(2,3),rep(3,10),rep(4,7),
1,rep(2,6),rep(3,14),rep(4,12),
2,rep(3,9),rep(4,11)),ordered=TRUE,
labels=c('Very Dissatisfied','Little Dissatisfied',
'Moderately Satisfied','Satisfied'))
income<-factor(c(rep(1,20),rep(2,22),rep(3,33),rep(4,21)),ordered=TRUE,
labels=c('<15,000','15,000-25,000','25,000-40,000','>40,000'))
table(income,job.satis)
ordinal.gamma(job.satis,income)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|