R语言 胁迫参数到一个名字 – as.name() 函数
R语言中的 as.name() 函数是用来将参数胁迫到一个名字上的。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"