undo_minmax: Reverse minmax scaling of numeric vector

View source: R/pre_processing.R

undo_minmaxR Documentation

Reverse minmax scaling of numeric vector

Description

Helper function to reverse minmax scaling applied in the pre-processing step.

Usage

undo_minmax(s, s_min, s_max)

Arguments

s

A numeric vector or column, scaled between 0 and 1.

s_min

A numeric value, the minimum of the unscaled vector

s_max

A numeric value, the maximum of the unscaled vector

Value

Vector re-scaled using original parameters s_min and s_max

Examples

ex_num <- runif(100,1,10)
scaled <- col_minmax(ex_num)
undo_scale <- undo_minmax(scaled, s_min = min(ex_num), s_max = max(ex_num))

# Prove two are identical
all.equal(ex_num, undo_scale)

rMIDAS documentation built on Oct. 11, 2023, 5:14 p.m.