Description Usage Arguments Details Value Author(s) References See Also Examples
The minmax()
function normalizes data of the provided time series
to bring values into the range [0,1]. minmax.rev()
reverses the
normalization.
1 2 3 |
data |
A numeric vector, a univariate time series containing the values to
be normalized, or a matrix with sliding windows as returned by |
max |
Integer indicating the maximal value in |
min |
Integer indicating the minimum value in |
byRow |
If |
Ranging is done by using:
X' = \frac{(x - x_{min})}{(x_{max} - x_{min})}
.
data
normalized between 0 and 1. If byRow
is TRUE
,
the function returns data
normalized by rows (sliding windows).
max
and min
are returned as attributes.
Rebecca Pontes Salles
R.J. Hyndman and G. Athanasopoulos, 2013, Forecasting: principles and practice. OTexts.
E. Ogasawara, L. C. Martinez, D. De Oliveira, G. Zimbrao, G. L. Pappa, and M. Mattoso, 2010, Adaptive Normalization: A novel data normalization approach for non-stationary time series, Proceedings of the International Joint Conference on Neural Networks.
Other normalization methods:
an()
1 2 3 4 5 6 7 8 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.