Learn R Programming

bruceR (version 2023.9)

scaler: Min-max scaling (min-max normalization).

Description

This function resembles RESCALE() and it is just equivalent to RESCALE(var, to=0:1).

Usage

scaler(v, min = 0, max = 1)

Value

A vector of rescaled variable.

Arguments

v

Variable (numeric vector).

min

Minimum value (defaults to 0).

max

Maximum value (defaults to 1).

Examples

Run this code
scaler(1:5)
# the same: RESCALE(1:5, to=0:1)

Run the code above in your browser using DataLab