notangle {noweb} | R Documentation |
Extract code from a noweb object
Description
Extract a named bit of code from the noweb source of R functions
Usage
notangle(file, target = "*", out, syntax = nowebSyntax, ...)
Arguments
file |
an input file containing noweb code, or alternately
an object of class |
target |
the target code chunk to extract. The parent .Rnw file
will contain |
out |
a file name on which to write the result. By default this
will be the name of the target with ".R" added, or if the target
is "*" it will be the name of the input file with it's final
suffix changed to ".R".
A value of |
syntax |
defines the syntax to detect code chunks. This would rarely if ever be changed by a user. |
... |
extra arguments; unused. (Compatability with Sweave). |
Value
A character vector containing the code, with the invisible attribute set to prevent automatic printing.
Author(s)
Terry Therneau
References
N Ramsay. Literate programming simplified. IEEE Software 11:97-105, 1994.
See Also
Examples
## Not run:
# Extract the nwread function
notangle("noweb.Rnw", "nwread")
## End(Not run)