The noquote()
function in R is used to print a character string without quotes.
The syntax of the noquote()
function is given below:
noquote(obj, right=FALSE)
The noquote()
function takes the following parameter values:
obj
: This represents a vector of character strings. It is a required parameter value.right
: This takes a logical value that indicates whether the returned string should be right aligned or not. It is an optional parameter value.# implementing the prirt() and paste() functionprint("This is the print() function")paste("This is the paste() function")# implementing the noquote() functionnoquote("This is the noquote() function")
print()
and paste()
functions.noquote()
function.