The R Project SVN R

Rev

Rev 78107 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 78107 Rev 88591
Line 76... Line 76...
76
\seealso{
76
\seealso{
77
  \code{\link{evalq}}, \code{\link{attach}}, \code{\link{assign}},
77
  \code{\link{evalq}}, \code{\link{attach}}, \code{\link{assign}},
78
  \code{\link{transform}}.
78
  \code{\link{transform}}.
79
}
79
}
80
\references{
80
\references{
81
  Thomas Lumley (2003)  \emph{Standard nonstandard evaluation rules}.
-
 
82
  \url{https://developer.r-project.org/nonstandard-eval.pdf}
81
  \bibshow{R:Lumley:2003}
83
}
82
}
84
\examples{
83
\examples{
85
with(mtcars, mpg[cyl == 8  &  disp > 350])
84
with(mtcars, mpg[cyl == 8  &  disp > 350])
86
    # is the same as, but nicer than
85
    # is the same as, but nicer than
87
mtcars$mpg[mtcars$cyl == 8  &  mtcars$disp > 350]
86
mtcars$mpg[mtcars$cyl == 8  &  mtcars$disp > 350]