View source: R/inspect_coded_sources.R
inspect_coded_sources | R Documentation |
This function combines successive calls to parse_sources()
,
collect_coded_fragments()
and show_inductive_code_tree()
.
inspect_coded_sources(
path,
parse_args = list(extension = "rock|dct", regex = NULL, recursive = TRUE,
ignoreOddDelimiters = FALSE, encoding = rock::opts$get("encoding"), silent =
rock::opts$get("silent")),
fragments_args = list(codes = ".*", context = 0),
inductive_tree_args = list(codes = ".*", output = "both", headingLevel = 3),
deductive_tree_args = list()
)
path |
The path containing the sources to parse and inspect. |
parse_args |
The arguments to pass to |
fragments_args |
The arguments to pass to |
inductive_tree_args |
The arguments to pass
to |
deductive_tree_args |
Not yet implemented. |
The parsedSources object.
### Get path to example source
examplePath <-
system.file("extdata", package="rock");
### Inspect a selection of example sources - this takes too long
### to test, so hence the 'donttest' directive.
rock::inspect_coded_sources(
examplePath,
parse_args = list(regex = "test(.txt|.rock)")
);
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.