當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。