cumsum.test(sac)
cumsum.test()所属R语言包:sac
Nonparametric Test for Change-Point with One-change or Epidemic Alternative
变化或流行的替代变点的非参数检验
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Compute test statistic based on CUMSUM and change-point estimate
计算检验统计量的基础上CUMSUM和变点估计
用法----------Usage----------
cumsum.test(x, alternative = c("one.change", "epidemic"))
参数----------Arguments----------
参数:x
a numeric vector or matrix containing the data, one row per observation;
包含的数据,每一个行观察的一个数值向量或矩阵;
参数:alternative
a character string specifying the alternative hypothesis, must be one of "one-change" (default) or "epidemic". You can specify just the initial letter.
一个字符串,指定其他假设,必须是之一"one-change"(默认)或"epidemic"。您可以只指定的首字母。
值----------Value----------
<table summary="R valueblock"> <tr valign="top"><td>Sn </td> <td> test statistic</td></tr> <tr valign="top"><td>k.hat </td> <td> estimated change-point</td></tr> <tr valign="top"><td>m.hat </td> <td> the second estimated change-point for epidemic alternative</td></tr> </table>
<table summary="R valueblock"> <tr valign="top"> <TD> Sn </ TD> </ TD> </ TR> <tr <TD>检验统计量valign="top"> <TD>k.hat </ TD> <TD>估计变点</ TD> </ TR> <tr valign="top"> <TD>m.hat </ TD> <TD>第二估计变动点为流行另类</ TD> </ TR> </ TABLE>
(作者)----------Author(s)----------
Zhong Guan <a href="mailto:zguan@iusb.edu">zguan@iusb.edu</a>
参考文献----------References----------
Cs枚rgo, M. and Horv谩th, L. (1997), Limit Theorems in Change-Point Analysis, New York: John Wiley
参见----------See Also----------
cumsum
cumsum
实例----------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
cumsum.test(x, alternative = "one.change")
# epidemic alternative[流行另类]
k<-10
m<-20
n<-30
x<-rnorm(n,0,1)
x[(k+1):m]<-x[(k+1):m]+1.5
cumsum.test(x, alternative = "epidemic")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|