get_utterances_and_codes_from_source: Get utterances and codes from source

View source: R/get_utterances_and_codes_from_source.R

get_utterances_and_codes_from_sourceR 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
  );

rock documentation built on Dec. 28, 2022, 1:55 a.m.