Rev 69170 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
% File src/library/base/man/formatc.Rd% Part of the R package, https://www.R-project.org% Copyright 1995-2015 R Core Team% Distributed under GPL 2 or later\name{formatC}\title{Formatting Using C-style Formats}\alias{formatC}\alias{prettyNum}\alias{.format.zeros}\description{Formatting numbers individually and flexibly, \code{formatC()} using\code{C} style format specifications.\code{prettyNum()} is used for \dQuote{prettifying} (possiblyformatted) numbers, also in \code{\link{format.default}}.\code{.format.zeros()}, an auxiliary function of \code{prettyNum()}re-formats the zeros in a vector \code{x} of formatted numbers.}\usage{formatC(x, digits = NULL, width = NULL,format = NULL, flag = "", mode = NULL,big.mark = "", big.interval = 3L,small.mark = "", small.interval = 5L,decimal.mark = getOption("OutDec"),preserve.width = "individual", zero.print = NULL,drop0trailing = FALSE)prettyNum(x, big.mark = "", big.interval = 3L,small.mark = "", small.interval = 5L,decimal.mark = getOption("OutDec"), input.d.mark = decimal.mark,preserve.width = c("common", "individual", "none"),zero.print = NULL, drop0trailing = FALSE, is.cmplx = NA,\dots).format.zeros(x, zero.print, nx = suppressWarnings(as.numeric(x)))}\arguments{\item{x}{an atomic numerical or character object, possibly\code{\link{complex}} only for \code{prettyNum()}, typically avector of real numbers. Any class is discarded, with a warning.}\item{digits}{the desired number of digits after the decimalpoint (\code{format = "f"}) or \emph{significant} digits(\code{format = "g"}, \code{= "e"} or \code{= "fg"}).Default: 2 for integer, 4 for real numbers. If less than 0,the C default of 6 digits is used. If specified as more than 50, 50will be used with a warning unless \code{format = "f"} where it islimited to typically 324. (Not more than 15--21 digits need beaccurate, depending on the OS and compiler used. This limit isjust a precaution against segfaults in the underlying C runtime.)}\item{width}{the total field width; if both \code{digits} and\code{width} are unspecified, \code{width} defaults to 1,otherwise to \code{digits + 1}. \code{width = 0} will use\code{width = digits}, \code{width < 0} means leftjustify the number in this field (equivalent to \code{flag = "-"}).If necessary, the result will have more characters than\code{width}. For character data this is interpreted in characters(not bytes nor display width).}\item{format}{equal to \code{"d"} (for integers), \code{"f"},\code{"e"}, \code{"E"}, \code{"g"}, \code{"G"}, \code{"fg"} (forreals), or \code{"s"} (for strings). Default is \code{"d"} forintegers, \code{"g"} for reals.\code{"f"} gives numbers in the usual\code{xxx.xxx} format; \code{"e"} and \code{"E"} give \code{n.ddde+nn} or\code{n.dddE+nn} (scientific format); \code{"g"} and \code{"G"} put\code{x[i]} into scientific format only if it saves space to do so.\code{"fg"} uses fixed format as \code{"f"}, but \code{digits} asthe minimum number of \emph{significant} digits. This can leadto quite long result strings, see examples below. Note that unlike\code{\link{signif}} this prints large numbers withmore significant digits than \code{digits}. Trailing zeros are\emph{dropped} in this format, unless \code{flag} contains\code{"#"}.}\item{flag}{For \code{formatC}, a character string giving aformat modifier as in Kernighan and Ritchie (1988, page 243).\code{"0"} pads leading zeros; \code{"-"} does left adjustment,others are \code{"+"}, \code{" "}, and \code{"#"}. There can bemore than one of these, in any order.}\item{mode}{\code{"double"} (or \code{"real"}), \code{"integer"} or\code{"character"}.Default: Determined from the storage mode of \code{x}.}\item{big.mark}{character; if not empty used as mark between every\code{big.interval} decimals \emph{before} (hence \code{big}) thedecimal point.}\item{big.interval}{see \code{big.mark} above; defaults to 3.}\item{small.mark}{character; if not empty used as mark between every\code{small.interval} decimals \emph{after} (hence \code{small}) thedecimal point.}\item{small.interval}{see \code{small.mark} above; defaults to 5.}\item{decimal.mark}{the character to be used to indicate the numericdecimal point.}\item{input.d.mark}{if \code{x} is \code{\link{character}}, thecharacter known to have been used as the numeric decimal point in\code{x}.}\item{preserve.width}{string specifying if the string widths shouldbe preserved where possible in those cases where marks(\code{big.mark} or \code{small.mark}) are added. \code{"common"},the default, corresponds to \code{\link{format}}-like behaviorwhereas \code{"individual"} is the default in\code{formatC()}. Value can be abbreviated.}\item{zero.print}{logical, character string or \code{NULL} specifyingif and how \emph{zeros} should be formatted specially. Useful forpretty printing \sQuote{sparse} objects.}\item{drop0trailing}{logical, indicating if trailing zeros,i.e., \code{"0"} \emph{after} the decimal mark, should be removed;also drops \code{"e+00"} in exponential formats.}\item{is.cmplx}{optional logical, to be used when \code{x} is\code{"\link{character}"} to indicate if it stems from\code{\link{complex}} vector or not. By default (\code{NA}),\code{x} is checked to \sQuote{look like} complex.}\item{\dots}{arguments passed to \code{format}.}\item{nx}{numeric vector of the same length as \code{x}, typically thenumbers of which the character vector \code{x} is the pre-format.}}\value{A character object of same size and attributes as \code{x} (afterdiscarding any class), in the current locale's encoding.Unlike \code{\link{format}}, each number is formatted individually.Looping over each element of \code{x}, the C function\code{sprintf(\dots)} is called for numeric inputs (inside the Cfunction \code{str_signif}).\code{formatC}: for character \code{x}, do simple (left or right)padding with white space.}\details{If you set \code{format} it overrides the setting of \code{mode}, so\code{formatC(123.45, mode = "double", format = "d")} gives \code{123}.The rendering of scientific format is platform-dependent: some systemsuse \code{n.ddde+nnn} or \code{n.dddenn} rather than \code{n.ddde+nn}.\code{formatC} does not necessarily align the numbers on the decimalpoint, so \code{formatC(c(6.11, 13.1), digits = 2, format = "fg")} gives\code{c("6.1", " 13")}. If you want common formatting for severalnumbers, use \code{\link{format}}.\code{prettyNum} is the utility function for prettifying \code{x}.\code{x} can be complex (or \code{\link{format}(<complex>)}, here. If\code{x} is not a character, \code{format(x[i], ...)} is applied toeach element, and then it is left unchanged if all the other argumentsare at their defaults. Use the \code{input.d.mark} argument for\code{prettyNum(x)} when \code{x} is a \code{character} vector notresulting from something like \code{format(<number>)} with a period asdecimal mark.Because \code{\link{gsub}} is used to insert the \code{big.mark}and \code{small.mark}, special characters need escaping. In particular,to insert a single backslash, use \code{"\\\\\\\\"}.The C doubles used for \R numerical vectors have signed zeros, which\code{formatC} may output as \code{-0}, \code{-0.000} \dots.There is a warning if \code{big.mark} and \code{decimal.mark} are thesame: that would be confusing to those reading the output.}\note{Prior to \R 3.0.2 this copied the class of \code{x} to the returnvalue and could easily create invalid objects.The default for \code{decimal.mark} in \code{formatC()} was changed in\R 3.2.0: for use within \code{\link{print}} methods in packages which mightbe used with earlier versions: use \code{decimal.mark = getOption("OutDec")}explicitly.}\author{\code{formatC} was originally written by Bill Dunlap for S-PLUS, latermuch improved by Martin Maechler.It was first adapted for \R by Friedrich Leisch and since muchimproved by the R Core team.%% The utilities \code{prettyNum()} and \code{.format.zeros()} are by%% Martin Maechler}\references{Kernighan, B. W. and Ritchie, D. M. (1988)\emph{The C Programming Language.} Second edition. Prentice Hall.}\seealso{\code{\link{format}}.\code{\link{sprintf}} for more general C-like formatting.}\examples{xx <- pi * 10^(-5:4)cbind(format(xx, digits = 4), formatC(xx))cbind(formatC(xx, width = 9, flag = "-"))cbind(formatC(xx, digits = 5, width = 8, format = "f", flag = "0"))cbind(format(xx, digits = 4), formatC(xx, digits = 4, format = "fg"))formatC( c("a", "Abc", "no way"), width = -7) # <=> flag = "-"formatC(c((-1:1)/0,c(1,100)*pi), width = 8, digits = 1)## note that some of the results here depend on the implementation## of long-double arithmetic, which is platform-specific.xx <- c(1e-12,-3.98765e-10,1.45645e-69,1e-70,pi*1e37,3.44e4)## 1 2 3 4 5 6formatC(xx)formatC(xx, format = "fg") # special "fixed" format.formatC(xx[1:4], format = "f", digits = 75) #>> even longer stringsformatC(c(3.24, 2.3e-6), format = "f", digits = 11, drop0trailing = TRUE)r <- c("76491283764.97430", "29.12345678901", "-7.1234", "-100.1","1123")## American:prettyNum(r, big.mark = ",")## Some Europeans:prettyNum(r, big.mark = "'", decimal.mark = ",")(dd <- sapply(1:10, function(i) paste((9:0)[1:i], collapse = "")))prettyNum(dd, big.mark = "'")## examples of 'small.mark'pN <- stats::pnorm(1:7, lower.tail = FALSE)cbind(format (pN, small.mark = " ", digits = 15))cbind(formatC(pN, small.mark = " ", digits = 17, format = "f"))cbind(ff <- format(1.2345 + 10^(0:5), width = 11, big.mark = "'"))## all with same width (one more than the specified minimum)## individual formatting to common width:fc <- formatC(1.234 + 10^(0:8), format = "fg", width = 11, big.mark = "'")cbind(fc)## Powers of two, stored exactly, formatted individually:pow.2 <- formatC(2^-(1:32), digits = 24, width = 1, format = "fg")## nicely printed (the last line showing 5^32 exactly):noquote(cbind(pow.2))## complex numbers:r <- 10.0000001; rv <- (r/10)^(1:10)(zv <- (rv + 1i*rv))op <- options(digits = 7) ## (system default)(pnv <- prettyNum(zv))stopifnot(pnv == "1+1i", pnv == format(zv),pnv == prettyNum(zv, drop0trailing = TRUE))## more digits change the picture:options(digits = 8)head(fv <- format(zv), 3)prettyNum(fv)prettyNum(fv, drop0trailing = TRUE) # a bit niceroptions(op)}\keyword{character}\keyword{print}