.rowNorm | R Documentation |
This function was performs a row-normalization procedure on matrix or data.frame 'dat'
.rowNorm(
dat,
refLi,
method,
proportMode,
maxFact = 10,
fact0val = 10,
retFact = FALSE,
callFrom = NULL,
debug = FALSE,
silent = FALSE
)
dat |
(matrix) .. init data, smay be parse matrix with numerous NA |
refLi |
(NULL or numeric) allows to consider only specific lines of 'dat' when determining normalization factors (all data will be normalized) |
method |
(character) may be "mean","median" (plus "NULL","none"); When NULL or 'none' is chosen the input will be returned as is |
proportMode |
(logical) decide if normalization should be done by multiplicative or additive factor |
maxFact |
(numeric, length=2) max normalization factor |
fact0val |
(integer) |
retFact |
(logical) |
callFrom |
(character) This function allows easier tracking of messages produced |
debug |
(logical) additional messages for debugging |
silent |
(logical) suppress messages |
This function returns a matrix of normalized data same dimensions as 'dat'
rowNormalize
.rowNorm(matrix(11:31, ncol=3), refLi=1, method="mean", proportMode=TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.