在 R 中抑制命令的输出
在本文中,我们将讨论如何在 R 编程语言中抑制命令的输出。
抑制意味着使输出不可见。我们可以使输出不应该出现。通过使用 invisible()函数,我们可以抑制输出。
句法:
invisible(variable_name)
其中 variable_name 是创建的变量的名称
示例: R 程序创建变量并进行抑制
R
# create a string variable
a="hello geeks"
# suppress the output by using
# invisible function
invisible(a)
R
# create a vector of subjects
a=c("c","c++","java")
# suppress the vector output by using
# invisible function
invisible(a)
# create a dataframe of subjects
b=data.frame("c","c++","java")
# suppress the dataframe output by using
# invisible function
invisible(b)
# create a list of subjects
c=list("c","c++","java")
# suppress the listoutput by using invisible
# function
invisible(c)
示例:用于创建向量、列表和数据框并抑制输出的 R 程序
电阻
# create a vector of subjects
a=c("c","c++","java")
# suppress the vector output by using
# invisible function
invisible(a)
# create a dataframe of subjects
b=data.frame("c","c++","java")
# suppress the dataframe output by using
# invisible function
invisible(b)
# create a list of subjects
c=list("c","c++","java")
# suppress the listoutput by using invisible
# function
invisible(c)
对于这两个示例,都不会生成任何输出,因为本文的全部目的是抑制输出。