List non-function objects {epicalc}R Documentation

List non-function objects

Description

List all objects except newly created function

Usage

lsNoFunction()

Details

Compared to standard 'ls()', this function displays only the subset of 'ls()' which are not function.

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

Usually the ordinary user do not need to use this command.

Author(s)

Virasakdi Chongsuvivatwong <cvirasak@medicine.psu.ac.th>

See Also

'use', 'detach', 'ls', 'rm'

Examples

object1 <- 1:5
object2 <- list(a=3, b=5)
function1 <- function(x) {x^3 +1}
ls() 
lsNoFunction()

[Package epicalc version 2.5.0.3 Index]