cat {base}
Description
Outputs the objects, concatenating the representations. cat performs much less conversion than print.
Usage
cat(... , file = "", sep = " ", fill = FALSE, labels = NULL,
append = FALSE)
Arguments
- ...
- R objects (see ‘Details’ for the types of objects allowed).
- file
- A connection, or a character string naming the file to print to. If
""(the default),catprints to the standard output connection, the console unless redirected bysink. - sep
- a character vector of strings to append after each element.
- fill
- a logical or (positive) numeric controlling how the output is broken into successive lines. If
FALSE(default), only newlines created explicitly by " " are printed. Otherwise, the output is broken into lines with print width equal to the optionwidthiffillisTRUE, or the value offillif this is numeric. Non-positivefillvalues are ignored, with a warning. - labels
- character vector of labels for the lines printed. Ignored if
fillisFALSE. - append
- logical. Only used if the argument
fileis the name of file (and not a connection or"|cmd"). IfTRUEoutput will be appended tofile; otherwise, it will overwrite the contents offile.
Details
cat is useful for producing output in user-defined functions. It converts its arguments to character vectors, concatenates them to a single character vector, appends the given sep = string(s) to each element and then outputs them.
No linefeeds are output unless explicitly requested by " " or if generated by filling (if argument fill is TRUE or numeric).
If file is a connection and open for writing it is written from its current position. If it is not open, it is opened for the duration of the call in "wt" mode and then closed again.
Currently only atomic vectors and names are handled, together with NULL and other zero-length objects (which produce no output). Character strings are output ‘as is’ (unlike print.default which escapes non-printable characters and backslash --- use encodeString if you want to output encoded strings using cat). Other types of R object should be converted (e.g. by as.character or format) before being passed to cat. That includes factors, which are output as integer vectors.
cat converts numeric/complex elements in the same way as print (and not in the same way as as.character which is used by the S equivalent), so options "digits" and "scipen" are relevant. However, it uses the minimum field width necessary for each element, rather than the same field width for all elements.
Values
None (invisible NULL).
References
Becker, R. A., Chambers, J. M. and Wilks, A. R. (1988) The New S Language. Wadsworth & Brooks/Cole.
Note
If any element of sep contains a newline character, it is treated as a vector of terminators rather than separators, an element being output after every vector element and a newline after the last. Entries are recycled as needed.
Examples
Documentation reproduced from R 2.15.3. License: GPL-2.
