turnTaking {zoomGroupStats}R Documentation

Simple conversational turn-taking analysis

Description

Generate a very basic analysis of the conversational turntaking in either a Zoom transcript or a Zoom chat file.

Usage

turnTaking(inputData, inputType, meetingId, speakerId)

Arguments

inputData

data.frame output from either processZoomChat or processZoomTranscript

inputType

string of either 'chat' or 'transcript'

meetingId

string giving the name of the meeting identifier

speakerId

string giving the name of the variable with the identity of the speaker

Value

list of four data.frames giving different levels of analysis for turn taking:

Examples

turn.out = turnTaking(inputData=sample_transcript_processed, 
inputType='transcript', meetingId='batchMeetingId', 
speakerId='userName')

turn.out = turnTaking(inputData=sample_chat_processed, 
inputType='chat', meetingId='batchMeetingId', 
speakerId='userName')


[Package zoomGroupStats version 0.1.0 Index]