Example in The R Programming Language
library(affy) if (require(affydata)) { data(Dilution) } y <- (exprs(Dilution)) x11 ma.plot( rowMeans(log2(y)), log2(y)-log2(y), cex=1 ) title("Dilutions Dataset (array 20B v 10A)") library(preprocessCore) #do a quantile normalization x <- normalize.quantiles(y) x11 ma.plot( rowMeans(log2(x)), log2(x)-log2(x), cex=1 ) title("Post Norm: Dilutions Dataset (array 20B v 10A)") Post Normalization MA Plots.Read more about this topic: MA Plot
Famous quotes containing the words programming and/or language:
“If there is a price to pay for the privilege of spending the early years of child rearing in the drivers seat, it is our reluctance, our inability, to tolerate being demoted to the backseat. Spurred by our success in programming our children during the preschool years, we may find it difficult to forgo in later states the level of control that once afforded us so much satisfaction.”
—Melinda M. Marshall (20th century)
“Theoretically, I grant you, there is no possibility of error in necessary reasoning. But to speak thus theoretically, is to use language in a Pickwickian sense. In practice, and in fact, mathematics is not exempt from that liability to error that affects everything that man does.”
—Charles Sanders Peirce (18391914)