reScale: Rescale a numeric vector to a specified minimum and maximum

View source: R/utilities.R

reScaleR Documentation

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)

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.

Value

A numeric vector of rescaled values.

Examples

reScale(15:200)

rcarbon documentation built on Aug. 24, 2023, 5:11 p.m.