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


R invisible 将打印模式更改为不可见


R语言 invisible 位于 base 包(package)。

说明

返回对象的(暂时)不可见副本。

用法

invisible(x = NULL)

参数

x

任意的R对象,默认情况下NULL.

细节

当希望函数返回可以赋值但未赋值时不打印的值时,此函数非常有用。

这是primitive 函数。

例子

# These functions both return their argument
f1 <- function(x) x
f2 <- function(x) invisible(x)
f1(1)  # prints
f2(1)  # does not

参考

Becker, R. A., Chambers, J. M. and Wilks, A. R. (1988) The New S Language. Wadsworth & Brooks/Cole.

也可以看看

withVisiblereturnfunction

相关用法


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