LMGene (version 2.28.0)

lnorm: Lowess normalization function

Description

Lowess normalization function

Usage

lnorm(mat1, span = 0.1)

Arguments

mat1
A data matrix to be normalized
span
Lowess smoother span. Larger values give more smoothness.

Value

matnorm1
Normalized matrix

Details

mat1 must be a p by n matrix, where p is the number of genes and n is the number of arrays or samples

References

http://dmrocke.ucdavis.edu

See Also

lnormeS, norm

Examples

Run this code
library(Biobase)
library(LMGene)

#data
data(sample.mat)
data(vlist)

raw.eS <- neweS(sample.mat, vlist)

# glog transform data
trans.eS <- transeS(raw.eS, lambda = 727, alpha = 56)

# normalize
normed.exprs <- lnorm(exprs(trans.eS))

Run the code above in your browser using DataLab