Learn R Programming

rpgm (version 1.1.2)

bound: Set a Minimum or a Maximum or Both to a Vector.

Description

The function lbound sets a minimum to the elements of a vector, ubound a maximum and bound both.

Usage

lbound(x, m)
ubound(x, M)
bound(x, m, M)

Arguments

x

double, vector to put in [m, M].

m

double, the minimum.

M

double, the maximum.

Value

A vector with the values of x on which all values lower that m has been replaced by m and all values greater than M has been replace by M.

See Also

http://pgm-solutions.com/packages

Examples

Run this code
# NOT RUN {
K <- 1
x <- rpgm.rnorm(12, 0.5)
lbound(x-K, 0)
# }

Run the code above in your browser using DataLab