score_standardization_methods {iteremoval}R Documentation

Score standardization methods

Description

Score standardization methods of function feature.removal.

Usage

min_max(x, na.rm = TRUE)

Arguments

x

The first parameter of score standardization method used in feature.removal is the sum-up dataframe. See details in the help page of function feature.removal.

na.rm

Bool. Remove NA or not.

Value

Numeric, normalized x to 0-1 range.

Examples

min_max(1:5)
min_max(c(1:5, NA), na.rm=TRUE)

[Package iteremoval version 1.0.0 Index]