dir_map | R Documentation |
Generate script text (and optionally output it to the clipboard and/or an external file) that can be used to individually read in every file in a directory and assign it to an object.
dir_map(
loc = "DATA/TRANSCRIPTS/CLEANED_TRANSCRIPTS",
obj.prefix = "dat",
use.path = TRUE,
col.names = c("person", "dialogue"),
file = NULL,
copy2clip = interactive()
)
loc |
The path/location of the transcript data files. |
obj.prefix |
A character string that will be used as the prefix (followed by a unique digit) as the assignment object. |
use.path |
logical. If |
col.names |
Supplies a vector of column names to the transcript columns. |
file |
A connection, or a character string naming the file to print to. |
copy2clip |
logical. If |
Generally, the researcher will want to read in and parse every transcript document separately. The task of writing the script for multiple transcript documents can be tedious. This function is designed to make the process more efficient and less prone to errors.
Prints a read in script text to the console, optionally copies the wrapped text to the clipboard on a Mac or Windows machine and optionally prints to an outside file.
skip
is set to 0, however, it is likely that this value will
need to be changed for each transcript.
read.transcript
## Not run:
(DIR <- system.file("extdata/transcripts", package = "qdap"))
dir_map(DIR)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.