当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


R print.via.format 打印实用程序


R语言 print.via.format 位于 tools 包(package)。

说明

.print.via.format 是一个 “prototype” print() 方法,很有用,至少作为一个简单的开始

    print.<myS3class>  <-  .print.via.format

用法

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

参数

x

要打印的对象。

...

可选的其他参数,传递给 format

x ,不可见(通过 invisible() ),就像 print 方法应该的那样。

例子

## 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.

也可以看看

print 通用;它的默认方法print.default(用于许多基本隐式类,例如"numeric""character"arraylist等)。

相关用法


注:本文由纯净天空筛选整理自R-devel大神的英文原创作品 Printing Utilities。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。