test_ks_dgamma(Sim.DiffProc)
test_ks_dgamma()所属R语言包:Sim.DiffProc
Kolmogorov-Smirnov Tests (Gamma Distribution)
柯尔莫哥洛夫 - 斯米尔诺夫测试(Gamma分布)
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Performs one sample Kolmogorov-Smirnov tests.
执行一个样本Kolmogorov-Smirnov测试。
用法----------Usage----------
test_ks_dgamma(X, shape, rate)
参数----------Arguments----------
参数:X
a numeric vector of data values.
的数据值的一个数值向量。
参数:shape
shape parameters. Must be positive, scale strictly.
形状参数。必须为正数,规模严格。
参数:rate
an alternative way to specify the scale.
另一种方式来指定比例。
Details
详细信息----------Details----------
see detail ks.test.
请参阅详细ks.test。
值----------Value----------
A list with class "htest" containing the following components:
列表类“htest”包含以下组件:
参数:statistic
the value of the test statistic.
检验统计量的值。
参数:p.value
the p-value of the test.
的p值的测试。
参数:alternative
a character string describing the alternative hypothesis.
一个字符串,描述了另一种假设。
参数:data.name
a character string giving the name(s) of the data.
给予(s)的数据的名称的字符串。
(作者)----------Author(s)----------
Boukhetala Kamal, Guidoum Arsalane.
实例----------Examples----------
X <- rgamma(1000,1,6)
test_ks_dgamma(X, shape=1, rate=6)
test_ks_dexp(X, lambda=6)
test_ks_dweibull(X, shape=1, scale=(1/6))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|