processZoomChat: Process a Zoom chat file

Description Usage Arguments Value Examples

View source: R/processZoomChat.R

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

1
2
3
4
5
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

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

zoomGroupStats documentation built on May 13, 2021, 5:06 p.m.