I have a data set that shows the score from -2 to 2 for each shop.
df <- tribble(
~shop, ~score_1, ~score_2, ~score_3,
"A", -2, 1, -1.6,
"", -1.8, 1.5, 1.3,
"C", 1.4, -1.3, 0.6,
"D", 0.3, 2, 1.9,
"E", 0.5, -1.7, -1.5,
)
However, I'd like to rescale these scores from [-2, 2] to [0, 100].
What could be the way to do this?