
Last chance! 50% off unlimited learning
Sale ends in
quantileNormalize(x, y, ...)
x
is a matrix it is interpreted as a vector. x
can also be of class "ExpressionSet"
. y
is a matrix it is interpreted as a vector. y
can also be of class "ExpressionSet"
. quantileNormalize-methods
):
AssayData
to use for a given ExpressionSet
input (default is "exprs")
sampleNames
to use as data (default is 1). Can be a character matching a sample name or simply an integer indicating which sample to choose. See getSamples
.
featureData
to use as binning variable (default is 1). Can be a character matching varLabel
or simply an integer indicating which feature to choose. See getFeatures
.
quantile
.
quantile
. See quantile
.
quantileNormalize-methods
, quantile
#demo(pipeline,package="HELP")
x <- rep(1:100,10)+10*rep(1:10,each=100)
y <- rep(1:20,each=50)
d <- density(quantileNormalize(x,y,num.bins=20,num.steps=1,mode="discrete"))
plot(density(x))
lines(d$x,d$y/3,col="red")
#rm(x,y,d)
Run the code above in your browser using DataLab