standardize: Standardize a variable

View source: R/utils.R

standardizeR Documentation

Standardize a variable

Description

Standardize a variable by subtracting the mean and dividing by the standard deviation

Usage

standardize(x, na.rm = FALSE)

Arguments

x

A numeric vector

na.rm

A boolean equal to TRUE if ignore NA when calculating the mean and standard deviations. See mean and sd

Value

A vector of standardized numbers

Examples

x <- runif(10)
standardize(x)

x[1] <- NA
standardize(x, na.rm = TRUE)


edsandorf/cmdlR documentation built on Jan. 17, 2024, 12:33 a.m.