Learn R Programming

bruceR (version 0.7.2)

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)

Arguments

v

Variable (numeric vector).

min

Minimum value (default is 0).

max

Maximum value (default is 1).

Value

A vector of rescaled variable.

Examples

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

# }

Run the code above in your browser using DataLab