get_utterances_and_codes_from_source {rock}R Documentation

Get utterances and codes from source

Description

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.

Usage

get_utterances_and_codes_from_source(x, ...)

Arguments

x

Either the result of a call to parse_source(), or a path or text to pass to parse_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
  );

[Package rock version 0.8.1 Index]