
Unlist Processed Interview Data with Speaker Tags
unlist_processed_interview.RdThis function takes a processed interview (as returned by
process_structured_interview) and reconstructs the original
dialogue format by prepending speaker tags to each intervention.
Value
A character vector where each element represents a line of dialogue, with the corresponding speaker tag prepended. The format is "\[Speaker Name\] Intervention text".
Examples
# Example Usage:
speakers = retrieve_speaker(intrw)
pattern = generate_speaker_pattern(speakers)
structured_interview = prep_interview(intrw)
processed_interview = process_structured_interview(
structured_interview,
pattern
)
# processed_interview = unlist_processed_interview(processed_interview)