Description Usage Arguments Value Examples
View source: R/makeTimeWindows.R
This creates a set of temporal windows of specified size so that metrics can be computed within those windows.
1 | makeTimeWindows(inputData, timeVar, windowSize)
|
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 |
list with two data.frames:
windowedData - inputData with the temporal window identifying information included
allWindows - contains the full set of temporal windows and identifying information. This is valuable because inputData may not have records within all of the possible temporal windows
1 2 | win.out = makeTimeWindows(sample_transcript_processed,
timeVar="utteranceStartSeconds", windowSize=10)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.