
Get utterances and codes from source
Source:R/get_utterances_and_codes_from_source.R
get_utterances_and_codes_from_source.Rd
This is a convenience function to use when displaying a source. It returns an object with the raw and clean utterances in a source, as well as the utterance identifiers and a list with vectors of the codes for each utterance.
Arguments
- x
Either the result of a call to
parse_source()
, or a path or text to pass toparse_source()
.- ...
Arguments to
parse_source()
, which is called to parse the source.
Value
A list containing $utterances_raw
, $utterances_clean
, $uids$
,
$codeMatches
, and $codesPerUtterance
.
Examples
### Get path to example source
examplePath <-
system.file("extdata", package="rock");
### Get a path to one example file
exampleFile <-
file.path(examplePath, "example-1.rock");
### Parse single example source
res <-
rock::get_utterances_and_codes_from_source(
exampleFile
);