makeTimeWindows {zoomGroupStats}R Documentation

Helper function that creates temporal windows in datasets

Description

This creates a set of temporal windows of specified size so that metrics can be computed within those windows.

Usage

makeTimeWindows(inputData, timeVar, windowSize)

Arguments

inputData

data.frame that has data over time, usually within a single meeting

timeVar

name of a numeric column that contains the time variable you want to use

windowSize

numeric value giving the length of time window

Value

list with two data.frames:

Examples

win.out = makeTimeWindows(sample_transcript_processed, 
timeVar="utteranceStartSeconds", windowSize=10)

[Package zoomGroupStats version 0.1.0 Index]