Skip to content
Prev 71547 / 398498 Next

discovery (was: data.frame to character)

On Fri, 10 Jun 2005 11:59:07 -0500 Robert Citek wrote:

            
Depends what you mean with `built-in'...
More precisely, it lists the objects in the global environment.
R> search()

will show you the search path and in particular all packages that are
currently attached. Using

R> ls("package:base")

you could list all objects in the base packages which includes LETTERS.
But "exp" is. So 

R> exp(1)

will give you "e".
Z