Rev 42333 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
% File src/library/base/man/as.environment.Rd% Part of the R package, http://www.R-project.org% Copyright 1995-2007 R Core Development Team% Distributed under GPL 2 or later\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:stats")) ## stats need not be loaded}\keyword{data}\keyword{environment}