reScale: Rescale a numeric vector to a specified minimum and maximum
Description
Rescale a numeric vector to a specified minimum and maximum.
Usage
reScale(x, type = "simple", to = c(0, 1), na.rm = TRUE)
Value
A numeric vector of rescaled values.
Arguments
- x
numeric vector to smooth.
- type
what kind of rescaling to perform. Current options are 'simple' (default) and 'normal' which produces a z-score and 'custom' for which the 'to' argument must be specified.
- to
numeric vector of length 2 specifying the minimum and maximum value to perform a linear rescale between (default is 0 and 1)
- na.rm
Set to TRUE,this removes NAs before rescaling.