reScale | R Documentation |
Rescale a numeric vector to a specified minimum and maximum.
reScale(x, type = "simple", to = c(0, 1), na.rm = TRUE)
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. |
A numeric vector of rescaled values.
reScale(15:200)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.