tools (version 3.3)

.print.via.format: Printing Utilities

Description

.print.via.format is a prototype print() method, useful, at least as a start, by a simple print. <- .print.via.format

Usage

.print.via.format(x, ...)

Arguments

x
object to be printed.
...
optional further arguments, passed to format.

Value

See Also

The print generic; its default method print.default (used for many basic implicit classes such as "numeric", "character" and arrays of them, lists etc).

Examples

Run this code
## The function is simply defined as
 function (x, ...) {
    writeLines(format(x, ...))
    invisible(x)
 }

## is used for simple print methods in R, and as prototype for new methods.

Run the code above in your browser using DataCamp Workspace