fitWtihin and
fit2DWithin. It allows the user to choose from a set of
thirteen basic location normalization procedures. The function
operates on an object of class marrayRaw
or marrayNorm and returns an object of
class marrayNorm.
withinNorm(marraySet, y = "maM", subset = TRUE, norm = c("none", "median", "rlm", "loess", "medianPrintTip", "rlmPrintTip", "loessPrintTip", "medianPlate", "rlmPlate", "loessPlate", "aov2D", "rlm2D", "loess2D", "spatialMedian"), ...)marrayRaw
or class marrayNorm, containing
intensity data for the batch of arrays to be normalized.maM.
rlm function
loess function
rlm function
loess function
rlm function
loess function
rlm function
loess function
norm functionmarrayNorm,
containing the normalized intensity data.
withinNorm dispatches to the function
fitWithin or fit2DWithin with specified
arguments according to the choice of norm. For instance,
when norm="loess" for global intensity dependent robust
nonlinear normalization, withinNorm calls
fitWithin(fun="loess") with the default span parameter set
at 0.4. If a different span is preferred, it should be input by
span=0.2 through the argument ... in the
withinNorm function (see example below). For more details see
fitWithin, fit2DWithin and individual
fitting functions such as loessfit.
seqWithinNorm, stepWithinNorm,
fitWithin, fit2DWithin,
loessfit, rlmfit.# Examples use swirl dataset, for description type ? swirl
data(swirl)
# Apply loess normalization for the first slide, span=0.4
## Not run:
# res.swirl1 <- withinNorm(swirl[,1], norm="loess")## End(Not run)
# Apply loess normalization for the first slide, span=0.2
## Not run:
# res.swirl1 <- withinNorm(swirl[,1], norm="loess", span=0.2)## End(Not run)
Run the code above in your browser using DataLab