Description Usage Arguments Details Value Author(s) References See Also Examples
Function for normalizing the range of values of a continuous variable using a linear scaling within the range of the variable.
1 | LinearScaling(x, mx = max(x, na.rm = T), mn = min(x, na.rm = T))
|
x |
A vector with numeric values |
mx |
The maximum value of the continuous variable being normalized
(defaults to the maximum of the values in |
mn |
The minimum value of the continuous variable being normalized
(defaults to the minimum of the values in |
The linear scaling normalization consist in transforming the value x into
(x - MIN) / (MAX - MIN)
An object with the same dimensions as x
but with the values normalized
Luis Torgo ltorgo@dcc.fc.up.pt
Torgo, L. (2010) Data Mining using R: learning with case studies, CRC Press (ISBN: 9781439810187).
http://www.dcc.fc.up.pt/~ltorgo/DataMiningWithR
1 2 3 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.