rescale | R Documentation |
rescale a numeric vector: map values linearly onto a given range
rescale(x, from = 0, to = 1)
x |
Numerical vector of values to be mapped to a given range |
from |
output minimum. DEFAULT: 0 |
to |
output maximum. DEFAULT: 1 |
numeric vector, rescaled onto output range
Berry Boessenkool, berry-b@gmx.de, Jan 2016
https://stackoverflow.com/a/18303620
scales::rescale
rescale(10:15, 135, 200)
rescale(10:15, 200, 135)
rescale(10:15, to=c(1,5))
values <- rbeta(1e3, shape1=4, shape2=35)
hist(rescale(values, 135, 200), breaks=25, col=3)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.