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