Description Usage Arguments Note References Examples
is.language
returns TRUE
if x
is a
variable name
, a call
, or an
expression
.
1 | is.language(x)
|
x |
object to be tested. |
A name
is also known as ‘symbol’, from its type
(typeof
), see is.symbol
.
This is a primitive function.
Becker, R. A., Chambers, J. M. and Wilks, A. R. (1988) The New S Language. Wadsworth & Brooks/Cole.
1 2 3 4 5 | ll <- list(a = expression(x^2 - 2*x + 1), b = as.name("Jim"),
c = as.expression(exp(1)), d = call("sin", pi))
sapply(ll, typeof)
sapply(ll, mode)
stopifnot(sapply(ll, is.language))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.