当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


R语言 is.name()用法及代码示例


R 语言中的 is.name() 函数用于在参数为 name 时返回 TRUE,否则返回 FALSE。 is.name() 和 is.symbol() 函数是相同的。

用法: is.name(x)

参数:
x:要测试的 R 对象

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

相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 Check if the Argument is a Name in R Programming – is.name() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。