compute_IOI | R Documentation |
Takes a unit table and computes the inter-onset-intervals for a single sound file.
compute_IOI(unit_table)
unit_table: |
A unit table tibble containing the original sound file, start/end times of the note,the note position and note_label. |
: A dataframe containing the ID, recording and IOIs of the start and end notes, note classes and the order of the ratio in the recording.
unit_table = tibble::tibble(start = c(0.37, 0.6, 1.2, 1.9), end = c(0.45, 0.7, 1.4, 2),
pos = seq(1,4),sound.files = "JS001.wav" , note_label = rep(c("A","B"),2))
compute_IOI(unit_table)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.