stdx | R Documentation |
Standarizes a vector or matrix, i.e., scales all the values in a way that the transformed values will be within the range [0, 1].
stdx(x, ...)
x |
vector, matrix or data.frame to be scaled |
... |
further arguments passed to or from other methods |
z = \frac{x - x_{min}}{x_{max}-x_{min}}
Mauricio Zambrano-Bigiarini, mzb.devel@gmail
scale
, istdx
############
## Loading the monthly time series of precipitation within the Ebro River basin.
data(EbroPPtsMonthly)
# Standarizing only some values of 'EbroPPtsMonthly'
stdx(as.matrix(EbroPPtsMonthly[1:70,10:13]))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.