Mengembalikan salinan objek yang (sementara) tidak terlihat.
invisible(x)
| Parameter | Deskripsi |
|---|---|
x |
an arbitrary R object. |
# NOT RUN {
# These functions both return their argument
f1 <- function(x) x
f2 <- function(x) invisible(x)
f1(1) # prints
f2(1) # does not
# }