Description Usage Arguments Details Value Note References See Also Examples
Apply robust Z score to data
1 |
dataMatrix |
Data frame or numeric matrix. Columns are plates, and rows are plate wells. |
dataRows, dataCols |
Optional integer vector. Indicate which row/column numbers from the dataMatrix should be normalized. If NULL then all rows/columns from the dataMatrix are used. |
Robust Z score normalization subtracts the median of the raw well intensities of a given plate from the signal intensity of a given compound and divides it by the median absolute deviation of the raw well intensities of that plate.
Numeric matrix of normalized data in the same format as dataMatrix
For information on how to arrange your dataset for dataMatrix, please see (ex_dataMatrix
)
Other normalization methods: normLoess
,
normMedFil
, normR
,
normSPAWN
, normZ
1 2 3 4 5 | ## load dataset
data(ex_dataMatrix)
## apply robust Z score
ex_normMatrix <- normRobZ(dataMatrix = ex_dataMatrix, dataCols = 5:10)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.