Learn R Programming

mark (version 0.8.1)

limit: Limit

Description

Limit a numeric vector by lower and upper bounds

Usage

limit(x, lower = min(x), upper = max(x))

Value

The vector x with lower and upper as the minimum, maximum values

Arguments

x

A numeric vector

lower

A lower limit (as x < lower)

upper

An upper limit (as x > higher)