is.call() function in R Language is used to determine whether x is a call or not.
Syntax: is.call(x) Parameters: x: an arbitrary R objectExample 1:
# R program to illustrate
# is.call function
# Calling is.call() function
is.call(call)
[1] FALSEExample 2:
# R program to illustrate
# is.call function
# Calling is.call() function
is.call(call("sin", 23))
[1] TRUE