| removeBatchEffect {limma} | R Documentation |
Remove batch effects from expression data.
removeBatchEffect(x, batch=NULL, batch2=NULL, covariates=NULL,
design=matrix(1,ncol(x),1), ...)
x |
numeric matrix, or any data object that can be processed by |
batch |
factor or vector indicating batches. |
batch2 |
factor or vector indicating batches. |
covariates |
matrix or vector of covariates to be adjusted for. |
design |
optional design matrix relating to treatment conditions to be preserved |
... |
other arguments are passed to |
This function is useful for removing batch effects, associated with hybridization time or other technical variables, prior to clustering or unsupervised analysis such as PCA, MDS or heatmaps. It is not intended to use with linear modelling. For linear modelling, it is better to include the batch factors in the linear model.
The design matrix is used to describe comparisons between the samples, for example treatment effects, which should not be removed.
The function (in effect) fits a linear model to the data, including both batches and regular treatments, then removes the component due to the batch effects.
The data object x can be of any class for which lmFit works.
If x contains weights, then these will be used in estimating the batch effects.
A numeric matrix of log-expression values with batch and covariate effects removed.
Gordon Smyth and Carolyn de Graaf
y <- matrix(rnorm(10*6),10,6)
colnames(y) <- c("A1","A2","A3","B1","B2","B3")
y[,1:3] <- y[,1:3] + 10
y
removeBatchEffect(y,batch=c("A","A","A","B","B","B"))