This function returns a vector of values that have been mapped from the interval [a,b] to the interval [u.v].
scaleX(x, a = min(x, na.rm = TRUE), b = max(x, na.rm = TRUE), u, v)
A vector of transformed values with four attributes. The first attribute is called "a" and it is the domain interval lower bound. The second attribute is called "b" and it is the domain interval upper bound. The third attribute is called "u" and it is the target interval lower bound. The fourth attribute is called "v" and it is the target interval upper bound.
A numerical vector of values to be mapped into a target interval
A numerical lower bound for the domain interval with min(x) as the default value
A numerical upper bound for the domain interval with max(x) as the default value
A numerical lower bound for the target interval
A numerical upper bound for the target interval
Frederick Novomestky fnovomes@poly.edu, Gregor Gorjanc gregor.gorjanc@bfro-uni-lj.si
Target lower and/or upper bounds can be
Seber, G. A. F. (1997) Linear Regression Analysis, New York.
x <- rnorm( 1000, 0, 10 )
y0 <- scaleX( x, u=0 , v=1 )
y1 <- scaleX( x, u=-1, v=1 )
y2 <- scaleX( x, u=-Inf, v=0 )
y3 <- scaleX( x, u=0, v=Inf )
y4 <- scaleX( x, u=-Inf, v=Inf )
Run the code above in your browser using DataLab