print.list(x, prefix="", ...)
print
methods for components of the list;
most methods have additional arguments like
digits
to control how
many digits of a number should be printed and
quote
to control whether
or not quotes are put around character strings.
x
, with the invisible flag set to prevent reprinting.
print.list
treats
x
as an object of mode
"list"
and prints
each of its components, preceded by
prefix
and its name or
component number.
print.list
is called by
print.default
.
The
prefix
argument is used to identify components of the list that are
lists.
print.list(wafer) # print a data frame as a list print(unclass(wafer)) # the same thing