felp {felp} | R Documentation |
Functional help which displays structure of an object in addition to help
Description
Structure of object is returned by str()
.
For a function, its source is returned instead of str()
.
Usage
felp(topic, package = NULL, ...)
Arguments
topic |
usually, a name or character string specifying the topic for which help is sought. A character string (enclosed in explicit single or double quotes) is always taken as naming a topic. If the value of See ‘Details’ for what happens if this is omitted. |
package |
a name or character vector giving the packages to look
into for documentation, or |
... |
Arguments passed on to
|
Examples
# Identical to help(identity); print(identity)
felp(identity)
# Identical to help(iris); str(iris)
felp(iris)
# Identical to help(package = stats)
felp(package = stats)