https://github.com/cran/epicalc
Raw File
Tip revision: 5b1777a9225b99418f26aeb843be688dff5e7c32 authored by Virasakdi Chongsuvivatwong on 17 February 2012, 00:00:00 UTC
version 2.14.1.6
Tip revision: 5b1777a
lsNoFunction.rd
\name{List non-function objects}
\alias{lsNoFunction}
\title{List non-function objects}
\description{List all objects visible in the global environment except user created functions.}
\usage{
lsNoFunction()
}
\details{Compared to standard 'ls()', this function displays only the subset of 'ls()' which are not functions. 

The member of this list can be removed by 'zap()' but not the set of the functions created.
}

\author{Virasakdi Chongsuvivatwong
	\email{ <cvirasak@medicine.psu.ac.th>}
}
\seealso{'use', 'detach', 'ls', 'rm'}
\examples{
object1 <- 1:5
object2 <- list(a=3, b=5)
function1 <- function(x) {x^3 +1}
ls() 
lsNoFunction()

## To show only functions
as.character(lsf.str()[])
}
\keyword{database}
back to top