- x
character object.
- ...
These dots are for future extensions and must be empty.
- chars
integer scalar indicating the maximum number of character units
to display. Wide characters like emoji take two character units; combining
marks and default ignorables take none. Longer strings get truncated and
suffixed or prefixed with an ellipsis ("..."
in C locale,
"\u2026"
in others). Set to NULL
to limit output to the line
width as determined by getOption("width")
.
- quote
logical scalar indicating whether to put surrounding
double-quotes ('"'
) around character strings and escape internal
double-quotes.
- na.print
character string (or NULL
) indicating the encoding
for NA
values. Ignored when na.encode
is FALSE
.
- print.gap
non-negative integer (or NULL
) giving the number of
spaces in gaps between columns; set to NULL
or 1
for a single
space.
- right
logical scalar indicating whether to right-justify character
strings.
- max
non-negative integer (or NULL
) indicating the maximum
number of elements to print; set to getOption("max.print")
if
argument is NULL
.
- names
a character string specifying the display style for the
(column) names, as an ANSI SGR parameter string.
- rownames
a character string specifying the display style for the row
names, as an ANSI SGR parameter string.
- escapes
a character string specifying the display style for the
backslash escapes, as an ANSI SGR parameter string.
- display
logical scalar indicating whether to optimize the encoding
for display, not byte-for-byte data transmission.
- style
logical scalar indicating whether to apply ANSI terminal escape
codes to style the output. Ignored when output_ansi()
is
FALSE
.
- utf8
logical scalar indicating whether to optimize results for a
UTF-8 capable display, or NULL
to set as the result of
output_utf8()
. Ignored when output_utf8()
is FALSE
.