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, ...)
x | A vector of values. |
---|---|
... | Used to accept any other parameters. |
x
unchanged
#> [1] 0.00 0.25 0.50 0.75 1.00rescale_none(1:5)#> [1] 1 2 3 4 5