A faster version of scale with a similar interface that
also allows for imputation. The main difference is that this version scales
by the standard deviation regardless of whether centering is enabled or
not. If centering is enabled, missing values are imputed by 0, otherwise by
the mean of the column that contains the value.
Usage
preprocess(X, center = FALSE, scale = FALSE, impute = FALSE)
Arguments
X
A numeric matrix.
center
Either a logical value or numeric vector of length equal to the number
of columns of X.
scale
Either a logical value or numeric vector of length equal to the number
of columns of X.
impute
Indicates whether missing values should be imputed.
# NOT RUN {# Load example databg <- BGData:::loadExample()
# Center and scale genotypesW <- preprocess(as.matrix(geno(bg)), center = TRUE, scale = TRUE)
# }