test_ks_df(Sim.DiffProc)
test_ks_df()所属R语言包:Sim.DiffProc
Kolmogorov-Smirnov Tests (F Distribution)
柯尔莫哥洛夫 - 斯米尔诺夫检验(F分布)
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Performs one sample Kolmogorov-Smirnov tests.
执行一个样本Kolmogorov-Smirnov测试。
用法----------Usage----------
test_ks_df(X, df1, df2)
参数----------Arguments----------
参数:X
a numeric vector of data values.
的数据值的一个数值向量。
参数:df1
degrees of freedom. Inf is allowed.
自由度。 Inf文件是允许的。
参数:df2
degrees of freedom. Inf is allowed.
自由度。 Inf文件是允许的。
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 <- rf(1000,10,20)
test_ks_df(X, df1=10, df2=20)
test_ks_df(X, df1=5, df2=15)
test_ks_df(X, df1=15, df2=25)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|