BreakMeans {WaveCGH} | R Documentation |
This function applies maximum overlap discrete wavelet transform (MODWT) to find break means in a series. Double implementation of MODWT confirms the presence of break points in the series.
BreakMeans(x)
x |
CGH array. |
Vector of break means corresponding to each point is returned.
A. I. McLeod and M. S. Islam
Islam, M. S. (2008). Periodicity, Change Detection and Prediction in Microarrays. Ph.D. Thesis, The University of Western Ontario.
set.seed(123) x<-c(rnorm(20), rnorm(20, 1), rnorm(20)) BreakMeans(x)