Description Usage Arguments Details Value Author(s) See Also Examples
View source: R/normScaleLimma.R
This function loads a maigesRaw
or maiges
object and scale adjust (normalise between arrays) the data using
functions from limma package.
1 | normScaleLimma(obj=NULL, ...)
|
obj |
object of type |
... |
additional parameters for function
|
This function for scale adjustment is entirely based on function
normalizeBetweenArrays
from
limma package. See the help page for this function to see how
to set the parameters. Pay attention to the 'vsn' method of scale
adjustment, that must be used alone.
This function returns a maiges
object.
Gustavo H. Esteves <gesteves@vision.ime.usp.br>
normalizeBetweenArrays
from limma package.
1 2 3 4 5 6 7 8 9 10 11 12 13 | ## Loading the dataset
data(gastro)
## Doing the scale adjustment from median-absolute-value method (from
## limma)
gastro.norm = normScaleLimma(gastro.norm, method="scale")
boxplot(gastro.norm) ## To see the efect of adjustment
## To do VSN scale adjustment (from vsn package) use the command. Be
## carefull that this method adjust the variance along A values and not
## between chips!!
gastro.norm = normScaleLimma(gastro.raw2, method="vsn")
boxplot(gastro.norm) ## See the effect
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.