Description Usage Arguments Details Value Missing values Author(s) References See Also Examples
Weight function for scanner signals.
1  | SignalWeights$fromSaturatedSignals(x, satRatio=0.75, maxSignal=2^16 - 1, ...)
 | 
x | 
 A   | 
satRatio | 
 A   | 
maxSignal | 
 A   | 
All signals less than satRatio*maxSignal get weight one, all
greater or equal to maxSignal get weight zero, and inbetween
there is a linear decrease from one to zero.
Default value of argument satRatio is chosen such that saturation
"starts" about 50000 for signals on the range [0,65535], which was
reported by [1].
Returns a vector (or a matrix) of weights in [0,1].
Missing-value signals (NA), get zero weight.
Henrik Bengtsson (http://www.braju.com/R/)
[1] H. Lyng, A. Badiee, D.H. Svendsrud, E. Hovig, O. Myklebost, T. Stokke. Profound influence of microarray scanner characteristics on gene expression ratios: analysis and procedure for correction. BMC Genomics, 2004, 5:10.
For more information see SignalWeights..
1 2  |   x <- seq(from=0, to=10^5, by=100)
  plot(x, SignalWeights$fromSaturatedSignals(x), type="l")
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.