This rescaler just returns its input, as opposed to scales::rescale(), scales::rescale_max(), and scales::rescale_mid(), all of which return values between 0 and 1.

rescale_none(x, ...)

Arguments

x

A vector of values.

...

Used to accept any other parameters.

Value

x unchanged

Examples

scales::rescale(1:5)
#> [1] 0.00 0.25 0.50 0.75 1.00
rescale_none(1:5)
#> [1] 1 2 3 4 5