Pvalues(sac)
Pvalues()所属R语言包:sac
The p-values of Test Statistics Based on Asymptotic Distribution
P值检验统计量的渐近分布的基础上
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Calculate the approximate p-values of the test statistics
计算的近似p值的测试统计
用法----------Usage----------
p.OneChange(n, d, Sn)
p.Epidemic.Vn(Vn, d, tol = 1e-10)
p.Epidemic.Wn(Wn, tol = 1e-07)
参数----------Arguments----------
参数:Sn
test statistic Sn of the one-change alternative
检验统计量Sn的一个变化的替代
参数:Vn
test statistic Vn of the epidemic alternative
检验统计量Vn疫情替代
参数:Wn
test statistic Wn of the epidemic alternative
检验统计量Wn疫情替代
参数:n
sample size
样本量
参数:d
dimension of the data value
数据值的维数
参数:tol
the desired accuracy.
所需的精度。
值----------Value----------
<table summary="R valueblock"> <tr valign="top"><td>p.value </td> <td> p-value</td></tr> </table>
<table summary="R valueblock"> <tr valign="top"> <TD>p.value </ TD> <TD>p价值</ TD> </ TR> </表>
(作者)----------Author(s)----------
Zhong Guan <a href="mailto:zguan@iusb.edu">zguan@iusb.edu</a>
参考文献----------References----------
Guan, Z.(2001) Some Results About Empirical Likelihood Method, Ph.D. Thesis, The University of Toledo.
Guan, Z.(2004) A semiparametric changepoint model, Biometrika, 91, 4, 849–862.
Guan, Z. Semiparametric Tests for Change-points with Epidemic Alternatives.
参见----------See Also----------
schapt, BootsChapt
schapt,BootsChapt
实例----------Examples----------
require(sac) #load the package[加载包]
# one-change alternative[变化的替代]
k<-10
n<-30
x<-rnorm(n,0,1)
x[(k+1):n]<-x[(k+1):n]+1.5
T<-SemiparChangePoint(x, alternative = "one.change")$Sn
p.OneChange(n, d=1, T)
# epidemic alternative[流行另类]
k<-5
m<-10
n<-20
x<-rnorm(n,0,1)
x[(k+1):m]<-x[(k+1):m]+1.5
res<-SemiparChangePoint(x, alternative = "e")
V<-res$Vn; W<-res$Wn
p.Epidemic.Vn(V, d=1)
p.Epidemic.Wn(W)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|