Change the Print Mode to Invisible

Usage

invisible(expr)

Value

This function returns a (temporarily) invisible copy of its argument. This can be useful when it is desired to have functions return values which can be assigned, but which do not print when they are not assigned.

See Also

return and function.

Examples

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


[Package Contents]