processZoomChat {zoomGroupStats}R Documentation

Process a Zoom chat file

Description

Parses the data from the chatfile that is downloaded from the Zoom Cloud recording site. Note that this is the file that accompanies a recording. This is not the file that you might download directly within a given Zoom session, nor is it the one that is saved locally on your computer. This is the file that you can access after a session if you record in the cloud.

Usage

processZoomChat(
  fname,
  sessionStartDateTime = "1970-01-01 00:00:00",
  languageCode = "en"
)

Arguments

fname

String that is the path to the downloaded Zoom .txt chat file

sessionStartDateTime

String that is the start of the session in YYYY-MM-DD HH:MM:SS

languageCode

String denoting the language

Value

data.frame where each record is a message submission in the chat, containing columns:

Examples

ch.out = processZoomChat(
fname=system.file('extdata', "meeting001_chat.txt", package = 'zoomGroupStats'), 
sessionStartDateTime = '2020-04-20 13:30:00', 
languageCode = 'en')

[Package zoomGroupStats version 0.1.0 Index]