as.name()
R 語言中的函數用於將參數強製轉換為名稱。這as.name()
和as.symbol()
函數是相同的。
用法: as.name(x)
參數:
x:被脅迫的對象
範例1:
# R program to illustrate
# as.name() function
# Calling the as.name() function to
# coerce 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
範例2:
# R program to illustrate
# as.name() function
# Calling the as.name() function to
# coerce the argument to a name
x <- as.name("sample")
# Getting the class of the argument
class(x)
輸出:
[1] "name"
相關用法
- R語言 is.name()用法及代碼示例
- R語言 expand.grid()用法及代碼示例
- R語言 print()用法及代碼示例
- R語言 seq_along()用法及代碼示例
- R語言 get()用法及代碼示例
- R語言 exists()用法及代碼示例
- R語言 is.primitive()用法及代碼示例
- R Character String轉Variable Name用法及代碼示例
- R語言 dunif()用法及代碼示例
- R語言 lapply()用法及代碼示例
- R語言 optimize()用法及代碼示例
- R語言 lgamma()用法及代碼示例
注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 Coercing the Argument to a Name in R Programming – as.name() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。