當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。