WaveCD-package(WaveCD)
WaveCD-package()所属R语言包:WaveCD
Detects and plots change points in a series
检测和图了一系列的变化点
译者:生物统计家园网 机器人LoveR
描述----------Description----------
It finds and plots change points in a series using wavelet method. We compare the wavelet coefficients obtained at highest order resolution with Wang's threshold to detect change points. Double implementation of MODWT confirms the presence of break points in the series.
它发现了一系列利用小波方法和图的变化点。我们比较了小波系数,获得最高的分辨率王的阈值来检测变化点。双重实施MODWT证实的存在下,该系列中的中断点。
Details
详细信息----------Details----------
</table>
</ TABLE>
(作者)----------Author(s)----------
M. Shahidul Islam
Maintainer: <islam@stats.uwo.ca>
参考文献----------References----------
M.S. Islam (2008). Periodicity, Change Detection and Prediction in Microarrays. Ph.D. Thesis, University of Western Ontario.
实例----------Examples----------
# Finding break points in the series[系列中的查找中断点]
set.seed(123)
x<-c(rnorm(150, sd=0.1), rnorm(250, 0.8, sd=0.1), rnorm(150, sd=0.1))
BreakPoints(x)
# Graphical displa of break points [图形DISPLA破发点]
phi<-0.8
SigE<- 0.12
ex.c1<- c(rep(0, 80), rep(-0.7,30), rep(0,40))+ SimulateError(phi, SigE, 150)
ex.c2<- c(rep(0,40), rep(0.7, 30), rep(0, 50))+ SimulateError(phi, SigE, 120)
ex.c<-c(ex.c1, ex.c2)
PlotBreakPoints(ex.c, c(rep(1, 150),rep(2, 120)))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|