rescale_max: Rescale numeric vector to have specified maximum

View source: R/bounds.R

rescale_maxR Documentation

Rescale numeric vector to have specified maximum

Description

Rescale numeric vector to have specified maximum

Usage

rescale_max(x, to = c(0, 1), from = range(x, na.rm = TRUE))

Arguments

x

numeric vector of values to manipulate.

to

output range (numeric vector of length two)

from

input range (numeric vector of length two). If not given, is calculated from the range of x

Examples

rescale_max(1:100)
rescale_max(runif(50))
rescale_max(1)

hadley/scales documentation built on Jan. 10, 2024, 2:06 p.m.