BreakPoints(WaveCD)
BreakPoints()所属R语言包:WaveCD
Find break points in a given series
寻找破发点中的一个系列
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function applies maximum overlap discrete wavelet transform (MODWT) to find break points in a series. We compare the wavelet coefficients obtained at highest order resolution with Wang's threshold to detect change points. Double application of the process distinguishes noise from a real jump.
此功能适用于最大重叠离散小波变换(MODWT)找到了一系列的破发点。我们比较了小波系数,获得最高的分辨率王的阈值来检测变化点。双应用的过程中,区分从一个真正的跳跃的噪音。
用法----------Usage----------
BreakPoints(x)
参数----------Arguments----------
参数:x
a series
系列
Details
详细信息----------Details----------
Uses MODWT to detect breakpoints. See Islam (2008).
使用MODWT检测断点。伊斯兰教(2008年)。
值----------Value----------
list of break points (end points not included)
破发点(终点)
(作者)----------Author(s)----------
M.Shahidul Islam
参考文献----------References----------
M.S. Islam (2008). Periodicity, Change Detection and Prediction in Microarrays. Ph.D. Thesis, University of Western Ontario.
参见----------See Also----------
PlotBreakPoints
PlotBreakPoints
实例----------Examples----------
set.seed(123)
x<-c(rnorm(150), rnorm(250, 1), rnorm(200))
BreakPoints(x)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|