View source: R/dimarMatrixPreparation.R
dimarMatrixPreparation | R Documentation |
Prepare/Filter matrix
dimarMatrixPreparation(mtx, nacut = 2, logflag = "auto")
mtx |
Quantitative matrix |
nacut |
minimum number of measured data points |
logflag |
should logarithm be applied (true,false,log2,log10) |
mtx <- matrix(rnorm(1000),nrow=100)
mtx[sample(c(1:1000),100)] <- NA
mtx <- dimarMatrixPreparation(mtx,nacut=0,logflag=FALSE)
mtx <- matrix(10^(rnorm(1000,7)),nrow=100)
mtx[sample(c(1:1000),100)] <- NA
mtx <- dimarMatrixPreparation(mtx,nacut=0.8,logflag=TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.