📌  相关文章
📜  在 R 编程中将参数强制为名称 - as.name()函数

📅  最后修改于: 2022-05-13 01:54:45.394000             🧑  作者: Mango

在 R 编程中将参数强制为名称 - as.name()函数

R 语言中的as.name()函数用于将参数强制为名称。 as.name()as.symbol()函数是相同的。

示例 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"