在 R 编程中将参数强制为名称 - as.name()函数
R 语言中的as.name()
函数用于将参数强制为名称。 as.name()
和as.symbol()
函数是相同的。
Syntax: as.name(x)
Parameters:
x: Object to be coerced
示例 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"