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
相关用法
- R语言 as.name()用法及代码示例
- R语言 expand.grid()用法及代码示例
- R语言 print()用法及代码示例
- R语言 seq_along()用法及代码示例
- R语言 exists()用法及代码示例
- R语言 get()用法及代码示例
- R语言 is.primitive()用法及代码示例
- R语言 setequal()用法及代码示例
- R语言 is.element()用法及代码示例
- R语言 between()用法及代码示例
- R语言 is.character()用法及代码示例
- R语言 is.ordered()用法及代码示例
- R语言 is.matrix()用法及代码示例
- R语言 is.list()用法及代码示例
- R语言 isSymmetric()用法及代码示例
- R语言 is.character()用法及代码示例
- R语言 is.integer()用法及代码示例
- R语言 is.numeric()用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 Check if the Argument is a Name in R Programming – is.name() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。