bdNormalize_Data | R Documentation |
This function performs a numerical or Delayed Array matrix normalization
bdNormalize_Data(X, bcenter = NULL, bscale = NULL)
X |
numerical or Delayed Array Matrix |
bcenter |
logical (default = TRUE) if TRUE, centering is done by subtracting the column means |
bscale |
logical (default = TRUE) if TRUE, centering is done by subtracting the column means |
numerical matrix
m <- 500 n <- 100 x <- matrix(rnorm(m*n), nrow=m, ncol=n) # with numeric matrix bdNormalize_Data(x) # Only scale bdNormalize_Data(x, bcenter = FALSE) # Only center bdNormalize_Data(x, bscale = FALSE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.