# Examples use swirl dataset, for description type ? swirl
data(swirl)
# Median normalization
mnorm<-maNorm(swirl[,2:3],norm="m")
# Object of class marrayNorm for the second and third swirl arrays
mnorm
# Function call
maNormCall(mnorm)
# Object of class marrayInfo -- Probe sequences
maGnames(mnorm)
# Object of class marrayInfo -- Target samples
maTargets(mnorm)
# Density plot of log-ratios M for third array
plot(density(maM(mnorm[,2])), lwd=2, col=2, main="Density plots of log-ratios M")
lines(density(maM(swirl[,3])), lwd=2)
abline(v=0)
legend(2,1,c("Pre-normalization","Post-normalization"))
Run the code above in your browser using DataLab