Rev 68948 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
% File src/library/grDevices/man/extendrange.Rd% Part of the R package, https://www.R-project.org% Copyright 1995-2007 R Core Team% Distributed under GPL 2 or later\name{extendrange}\alias{extendrange}\title{Extend a Numerical Range by a Small Percentage}\description{Extends a numerical range by a small percentage, i.e., fraction,\emph{on both sides}.}\usage{extendrange(x, r = range(x, na.rm = TRUE), f = 0.05)}\arguments{\item{x}{numeric vector; not used if \code{r} is specified.}\item{r}{numeric vector of length 2; defaults to the\code{\link{range}} of \code{x}.}\item{f}{number specifying the fraction by which the range should beextended.}}\seealso{\code{\link{range}}; \code{\link{pretty}} which can beconsidered a sophisticated extension of \code{extendrange}.}\value{A numeric vector of length 2, \code{r + c(-f,f) * diff(r)}.}\examples{x <- 1:5(r <- range(x)) # 1 5extendrange(x) # 0.8 5.2extendrange(x, f= 0.01) # 0.96 5.04## Use 'r' if you have it already:stopifnot(identical(extendrange(r = r),extendrange(x)))}\keyword{dplot}