The R Project SVN R

Rev

Rev 56186 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
42333 ripley 1
% File src/library/methods/man/substituteDirect.Rd
2
% Part of the R package, http://www.R-project.org
59039 ripley 3
% Copyright 1995-2007 R Core Team
42333 ripley 4
% Distributed under GPL 2 or later
5
 
15822 jmc 6
\name{substituteDirect}
56186 murdoch 7
\alias{substituteDirect}
15822 jmc 8
\title{SubstituteDirect}
9
\description{
18994 hornik 10
  Substitute for the variables named in the second argument the
11
  corresponding objects, substituting into \code{object}.  The argument
12
  \code{frame} is a named list; if omitted, the environment of the
13
  caller is used.
15822 jmc 14
 
18994 hornik 15
  This function differs from the ordinary \code{substitute} in that it
16
  treats its first argument in the standard S way, by evaluating it.  In
17
  contrast, \code{substitute} does not evaluate its first argument.
15822 jmc 18
 
18994 hornik 19
  The goal is to replace this with an \code{eval=} argument to
20
  \code{\link{substitute}}.
15822 jmc 21
}
18994 hornik 22
\usage{
23
substituteDirect(object, frame, cleanFunction=TRUE)
15822 jmc 24
}
16802 jmc 25
\keyword{internal}