ACF.plot {WaveCGH}R Documentation

Plot ACF for the fitted residuals

Description

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.

Usage

ACF.plot(x, cl, ...)

Arguments

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.

Value

No value is returned, only ACF plot.

Author(s)

A. I. McLeod and M. S. Islam

See Also

acf

Examples

set.seed(123)
x<-c(rnorm(20), rnorm(20, 1), rnorm(20))
cl<-rep(1, length(x)) # one chromosome
ACF.plot(x, cl)

[Package WaveCGH version 2.01 Index]