Rev 68948 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
% File src/library/base/man/bquote.Rd% Part of the R package, https://www.R-project.org% Copyright 1995-2014 R Core Team% Distributed under GPL 2 or later\name{bquote}\alias{bquote}\title{Partial substitution in expressions}\description{An analogue of the LISP backquote macro. \code{bquote} quotes itsargument except that terms wrapped in \code{.()} are evaluated in thespecified \code{where} environment.}\usage{bquote(expr, where = parent.frame())}\arguments{\item{expr}{A \link{language object}.}\item{where}{An environment.}}\value{A \link{language object}.}\seealso{\code{\link{quote}}, \code{\link{substitute}}}\examples{require(graphics)a <- 2bquote(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 argdefault <- 1bquote( function(x, y = .(default)) x+y )}\keyword{programming}\keyword{data}