Rev 25744 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
\name{bquote}\alias{bquote}%- Also NEED an '\alias' for EACH other topic documented here.\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())}%- maybe also 'usage' for other objects documented here.\arguments{\item{expr}{An expression }\item{where}{ An environment }}\value{An expression}\seealso{\code{\link{quote}}, \code{\link{substitute}} }\examples{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)))}\keyword{programming}\keyword{data}