Learn R Programming

rock (version 0.1.1)

prepend_ids_to_source: Prepending unique utterance identifiers

Description

This function prepending unique utterance identifiers to each utterance (line) in a source. Note that you'll probably want to clean the sources using clean_sources() first.

Usage

prepend_ids_to_source(input, output = NULL, origin = Sys.time(),
  preventOverwriting = rock::opts$get(preventOverwriting),
  encoding = rock::opts$get(encoding), silent = rock::opts$get(silent))

prepend_ids_to_sources(input, output = NULL, origin = Sys.time(), preventOverwriting = rock::opts$get(preventOverwriting), encoding = rock::opts$get(encoding), silent = rock::opts$get(silent))

Arguments

input

The filename or contents of the source for prepend_ids_to_source and the directory containing the sources for prepend_ids_to_sources.

output

The filename where to write the resulting file for prepend_ids_to_source and the directory where to write the resulting files for prepend_ids_to_sources

origin

The time to use for the first identifier.

preventOverwriting

Whether to overwrite existing files (FALSE) or prevent that from happening (TRUE).

encoding

The encoding of the file(s).

silent

Whether to be chatty or quiet.

Value

The source with prepended uids, either invisible (if output if specified) or visibly (if not).

Examples

Run this code
# NOT RUN {
prepend_ids_to_source(input = "brief\nexample\nsource");
# }

Run the code above in your browser using DataLab