print.default {base} | R Documentation |
Default Printing
Description
print.default
is the default method of the generic
print
function which prints its argument.
print.atomic
is almost the same and exists purely for
compatibility reasons.
Usage
print.default(x, digits = NULL, quote = TRUE, na.print = "NA",
print.gap = 1, ...)
print.atomic(x, quote = TRUE, ...)
Arguments
digits |
a non-null value for |
quote |
logical, indicating whether or not strings
( |
na.print |
a character string which is used to indicate
|
print.gap |
an integer, giving the spacing between adjacent columns in printed matrices and arrays. |
... |
(further arguments, currently disregarded) |
See Also
The generic print
, options
.
The "noquote"
class and print method.
Examples
pi
print(pi, digits = 16)
LETTERS[1:16]
print(LETTERS, quote = FALSE)