Skip to contents

This function writes an interview transcript (represented as a character vector) to a text file. Each element of the vector becomes a line in the output file.

Usage

write_interview(interview, filename)

Arguments

interview

A character vector containing the lines of the interview transcript.

filename

The path to the text file where the transcript will be written.

Value

None (invisible NULL). This function writes directly to a file.

Examples

# Write an interview transcript to "processed_interview.md"
write_interview(intrw, tempfile("interview", fileext = ".md"))