cramer.coeff(RVAideMemoire)
cramer.coeff()所属R语言包:RVAideMemoire
Cramer's association coefficient
Cramer的关联系数
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Compute the Cramer's association coefficient between 2 nominal variables, its confidence interval (by bootstraping) and tests for its significance.
的Cramer的关联系数计算名义变量之间的,其可信区间(Bootstrap逼近)和其意义的测试。
用法----------Usage----------
cramer.coeff(var1, var2, nrep = 1000, conf.level = 0.95)
参数----------Arguments----------
参数:var1
factor (first variable).
因素(第一变量)。
参数:var2
factor (second variable).
因子(第二可变)。
参数:nrep
number of replicates for bootstraping.
重复次数的Bootstrap逼近。
参数:conf.level
confidence level.
置信水平。
值----------Value----------
参数:statistic
test statistics.
测试数据。
参数:parameter
test degrees of freedom.
测试的自由度。
参数:p.value
test p-value.
测试p值。
参数:data.name
a character string giving the names of the data.
一个字符的字符串,给出的数据的名称。
参数:estimate
Cramer's coefficient.
Cramer的系数。
参数:conf.level
confidence level.
置信水平。
参数:rep
number of replicates.
重复的次数。
参数:interval
confidence interval.
置信区间。
(作者)----------Author(s)----------
Maxime Herv茅 <mx.herve@gmail.com>
----------See Also----------
boot
boot
实例----------Examples----------
var1 <- sample(LETTERS[1:3],30,replace=TRUE)
var2 <- sample(letters[1:3],30,replace=TRUE)
cramer.coeff(var1,var2)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|