Rev 86517 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
% File src/library/base/man/zapsmall.Rd% Part of the R package, https://www.R-project.org% Copyright 1995-2024 R Core Team% Distributed under GPL 2 or later\name{zapsmall}\alias{zapsmall}\title{Rounding of Numbers: Zapping Small Ones to Zero}\usage{zapsmall(x, digits = getOption("digits"),mFUN = function(x, ina) max(abs(x[!ina])),min.d = 0L)}\description{\code{zapsmall} determines a \code{digits} argument \code{dr} forcalling \code{round(x, digits = dr)} such that values close tozero (compared with the maximal absolute value in the vector) are\sQuote{zapped}, i.e., replaced by \code{0}.}\arguments{\item{x}{a numeric or complex vector or any \R number-like objectwhich has a \code{\link{round}} method and basic arithmetic methodsincluding \code{\link{log10}()}.}\item{digits}{integer indicating the precision to be used.}\item{mFUN}{a \code{\link{function}(x, ina)} of the numeric (or complex)\code{x} and the \code{\link{logical}} \code{ina := is.na(x)}returning a positive number in the order of magnitude of the maximal\code{abs(x)} value. The default is back compatible but not robust,and e.g., not very useful when \code{x} has infinite entries.}\item{min.d}{an integer specifying the minimal number of digits to use inthe resulting \code{\link{round}(x, digits=*)} call when \code{mFUN(*) > 0}.}}\references{Chambers, J. M. (1998)\emph{Programming with Data. A Guide to the S Language}.Springer.}\examples{x2 <- pi * 100^(-2:2)/10print( x2, digits = 4)zapsmall( x2) # automatic digitszapsmall( x2, digits = 4)zapsmall(c(x2, Inf)) # round()s to integer ..zapsmall(c(x2, Inf), min.d=-Inf) # everything is small wrt Inf(z <- exp(1i*0:4*pi/2))zapsmall(z)zapShow <- function(x, ...) rbind(orig = x, zapped = zapsmall(x, ...))zapShow(x2)## using a *robust* mFUNmF_rob <- function(x, ina) boxplot.stats(x, do.conf=FALSE)$stats[5]## with robust mFUN(), 'Inf' is no longer distorting the picture:zapShow(c(x2, Inf), mFUN = mF_rob)zapShow(c(x2, Inf), mFUN = mF_rob, min.d = -5) # the samezapShow(c(x2, 999), mFUN = mF_rob) # same *rounding* as w/ InfzapShow(c(x2, 999), mFUN = mF_rob, min.d = 3) # the samezapShow(c(x2, 999), mFUN = mF_rob, min.d = 8) # small diff}\keyword{arith}