trObjBrowse {TinnR}R Documentation

Functions to implement the an object browser (R explorer) in Tinn-R

Description

These functions provide features required to implement a complete object browser in Tinn-R as GUI client.

Usage

  trObjSearch(sep="\t", path=NULL)
  trObjList(id="default", envir=.GlobalEnv, all.names=TRUE,
    pattern="", group="", all.info=FALSE, sep="\t", path=NULL)

Arguments

sep Separator to use between items in the file (if path is not NULL).
path The path where to write a temporary file with the requested information. Use path=NULL (default) if you don't want to pass this data by mean of a file.
id The id of the object browser (you can run several ones concurrently, providing you give them different ids).
envir An environment, or the name of the environment, or the position in the search() path.
all.names Does it display all names (including hidden variables starting with '.')?
pattern A pattern to match for selecting variables.
group A group to filter.
all.info Do we return all the information (envir as first column or not (by default).

Details

trObjSearch() lists the search path. trObjList() lists objects in a given environment.

Value

Depending on the function, a list, a string, a reference to an external, temporary file or TRUE in case of success or FALSE otherwise is returned invisibly.

Author(s)

Adaptations: Jose Claudio Faria joseclaudio.faria@gmail.com
Original author: Philippe Grosjean phgrosjean@sciviews.org

See Also

objSearch, objList,


[Package TinnR version 1.0.3 Index]