View source: R/quantile_normalize_bart.R
quantile_normalize_bart | R Documentation |
Performs a quantile normalization to each column of the matrix X
.
quantile_normalize_bart(X)
X |
A design matrix, should not include a column for the intercept. |
A matrix X_norm
such that each column gives the associated
empirical quantile of each observation for each predictor.
X <- matrix(rgamma(100 * 10, shape = 2), nrow = 100)
X <- quantile_normalize_bart(X)
summary(X)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.