ACF.plot {WaveCGH} | R Documentation |
This function estimates the break means for each of the chromosomes, then finds the residuals by subtracting the means from original values. It plots ACF for such residuals.
ACF.plot(x, cl, ...)
x |
Value of CGH array. |
cl |
A vector referring to the sequence of chromosome numbers. It has same length as that of x. |
... |
Other arguments that acf takes. |
No value is returned, only ACF plot.
A. I. McLeod and M. S. Islam
set.seed(123) x<-c(rnorm(20), rnorm(20, 1), rnorm(20)) cl<-rep(1, length(x)) # one chromosome ACF.plot(x, cl)