powered by
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 )
This function returns a matrix of normalized data same dimensions as 'dat'
(matrix) .. init data, smay be parse matrix with numerous NA
(NULL or numeric) allows to consider only specific lines of 'dat' when determining normalization factors (all data will be normalized)
(character) may be "mean","median" (plus "NULL","none"); When NULL or 'none' is chosen the input will be returned as is
(logical) decide if normalization should be done by multiplicative or additive factor
(numeric, length=2) max normalization factor
(integer)
(logical)
(character) This function allows easier tracking of messages produced
(logical) additional messages for debugging
(logical) suppress messages
rowNormalize
.rowNorm(matrix(11:31, ncol=3), refLi=1, method="mean", proportMode=TRUE)
Run the code above in your browser using DataLab