sidekick {svTools} | R Documentation |
The sidekick
function builds a tree structure of an R code file by
analysing output of the R parser.
sidekick(x, ...)
## S3 method for class 'character'
sidekick(x, encoding = getOption("encoding"), delete.file = FALSE, ...)
## Default S3 method:
sidekick(x, ...)
## S3 method for class 'function'
sidekick(x, ...)
x |
a file to |
encoding |
encoding to use. Default to the encoding option (see options). |
delete.file |
should the file be delete when the function exits? |
... |
further arguments to pass to the method. |
A Data frame with columns:
id |
|
parent |
|
srcref1 |
|
srcref2 |
|
srcref3 |
|
srcref4 |
|
description |
Romain Francois <francoisromain@free.fr>
## Not run:
sidekick(outer)
## End(Not run)