Rev 24700 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
\name{as.environment}\alias{as.environment}\title{ Coerce to an Environment Object }\description{Converts a number or a character string to the correspondingenvironment on the search path.}\usage{as.environment(object)}\arguments{\item{object}{the object to convert. If it is already anenvironment, just return it. If it is a number, return theenvironment corresponding to that position on the search list. Ifit is a character string, match the string to the names on thesearch list.}}\value{The corresponding environment object.}\author{ John Chambers }\seealso{\code{\link{environment}} for creation and manipulation,\code{\link{search}}.}\examples{as.environment(1) ## the global environmentidentical(globalenv(), as.environment(1)) ## is TRUEtry(as.environment("package:ctest")) ## ctest need not be loaded}\keyword{data}\keyword{environment}