bquote: Partial substitution in expressions

Description Usage Arguments Value See Also Examples

View source: R/backquote.R

Description

An analogue of the LISP backquote macro. bquote quotes its argument except that terms wrapped in .() are evaluated in the specified where environment.

Usage

1
bquote(expr, where = parent.frame())

Arguments

expr

A language object.

where

An environment.

Value

A language object.

See Also

quote, substitute

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
require(graphics)

a <- 2

bquote(a == a)
quote(a == a)

bquote(a == .(a))
substitute(a == A, list(A = a))

plot(1:10, a*(1:10), main = bquote(a == .(a)))

## to set a function default arg
default <- 1
bquote( function(x, y = .(default)) x+y )

robertzk/monadicbase documentation built on May 27, 2019, 10:35 a.m.