📌  相关文章
📜  检查参数是否是 R 编程中的名称 - is.name()函数

📅  最后修改于: 2022-05-13 01:55:00.482000             🧑  作者: Mango

检查参数是否是 R 编程中的名称 - is.name()函数

R 语言中的is.name()函数用于如果参数是名称则返回 TRUE,否则返回 FALSE。 is.name()is.symbol()函数是相同的。

示例 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