检查参数是否是 R 编程中的名称 - is.name()函数
R 语言中的is.name()
函数用于如果参数是名称则返回 TRUE,否则返回 FALSE。 is.name()和is.symbol()函数是相同的。
Syntax: is.name(x)
Parameters:
x: R object to be tested
示例 1:
# R program to illustrate
# is.name() function
# Initializing a string
x <- "sample"
# Calling the is.name() function
# to check whether the argument is
# name or not
is.name(x)
输出:
[1] FALSE
示例 2:
# R program to illustrate
# is.name() function
# Coercing the argument to a name
x <- as.name("sample")
# Calling the is.name() function
# to check whether the argument is
# name or not
is.name(x)
输出:
[1] TRUE