chisq.exp(RVAideMemoire)
chisq.exp()所属R语言包:RVAideMemoire
Expected counts for comparison of proportions to given values
的比例进行比较,以给定的值的预期计数
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Return expected counts before comparing proportions to given values by a chi-squared test.
返回预期的计数进行比较之前,给定值比例的卡方检验。
用法----------Usage----------
chisq.exp(data, p, graph = FALSE)
参数----------Arguments----------
参数:data
contingency table.
列联表。
参数:p
theoretical proportions.
理论的地步。
参数:graph
logical. If TRUE a mosaic plot of expected counts is drawn.
逻辑。如果TRUE的预期计数的马赛克图的绘制。
Details
详细信息----------Details----------
The function returns how many counts can be < 5 to respect Cochran's rule (80% of counts must be >= 5).
该函数返回多少计数<5尊重科克伦的规则(80%的计数必须> = 5)。
值----------Value----------
参数:p.theo
theoretical proportions.
理论的地步。
参数:mat
contingency table of expected counts.
列联表的预期计数。
参数:cochran
number of counts which can be < 5.
它可以是<5的计数数。
(作者)----------Author(s)----------
Maxime Herv茅 <mx.herve@gmail.com>
参见----------See Also----------
prop.test, chisq.test, mosaicplot
prop.test,chisq.test,mosaicplot
实例----------Examples----------
proportions <- sample(c(0,1),60,replace=TRUE)
populations <- sample(LETTERS[1:3],60,replace=TRUE)
tab.cont <- table(populations,proportions)
p.theo <- c(0.2,0.5,0.7)
chisq.exp(tab.cont,p=p.theo)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|