collocate_comments {highlightr} | R Documentation |
This function provides the frequency of collocations in comments that correspond to the provided transcript.
collocate_comments(transcript_token, note_token, collocate_length = 5)
transcript_token |
transcript token to act as baseline for notes, resulting
from |
note_token |
tokenized document of notes, resulting from |
collocate_length |
the length of the collocation. Default is 5 |
data frame of the transcript and corresponding note frequency
comment_example_rename <- dplyr::rename(comment_example, page_notes=Notes)
toks_comment <- token_comments(comment_example_rename)
transcript_example_rename <- dplyr::rename(transcript_example, text=Text)
toks_transcript <- token_transcript(transcript_example_rename)
collocation_object <- collocate_comments(toks_transcript, toks_comment)