standardize | R Documentation |
Standardize a variable by subtracting the mean and dividing by the standard deviation
standardize(x, na.rm = FALSE)
x |
A numeric vector |
na.rm |
A boolean equal to TRUE if ignore NA when calculating the mean
and standard deviations. See |
A vector of standardized numbers
x <- runif(10)
standardize(x)
x[1] <- NA
standardize(x, na.rm = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.