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


R語言 as.name()用法及代碼示例


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"

相關用法


注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 Coercing the Argument to a Name in R Programming – as.name() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。