Skip to content
Related Articles
Get the best out of our app
GFG App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Coercing the Argument to a Name in R Programming – as.name() Function

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

as.name() function in R Language is used to coerce the argument to a name. The as.name() and as.symbol() functions are identical.

Syntax: as.name(x)

Parameters:
x: Object to be coerced

Example 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)


Output:

[1] TRUE

Example 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)


Output:

[1] "name"
My Personal Notes arrow_drop_up
Last Updated : 19 Jun, 2020
Like Article
Save Article
Similar Reads