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


R语言 exists()用法及代码示例


exists()R语言中的函数用于检查是否定义了具有函数参数中指定名称的对象。如果找到对象,则返回 TRUE。

用法: exists(name)

参数:
name:要搜索的对象名称

范例1:


# R program to check if
# an Object is defined or not
  
# Calling exists() function
exists("cos")
exists("diff")
exists("Hello")

输出:



[1] TRUE
[1] TRUE
[1] FALSE

范例2:


# R program to check if
# an Object is defined or not
  
# Creating a vector
Hello <- c(1, 2, 3, 4, 5)
  
# Calling exists() function
exists("Hello")

输出:

[1] TRUE

在上面的例子中可以看出,当第一个代码中没有定义名为 “Hello” 的对象时,exists()函数返回 FALSE,而在声明 “Hello” 对象之后,exists()函数返回 TRUE。这意味着,exists()函数检查预定义和用户定义的两个对象。

相关用法


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