get_gaps | R Documentation |
Takes a unit table of notes and generates a corresponding unit table for its gaps.
get_gaps(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 with the recording, position of gap and the gap duration.
unit_table = tibble::tibble(start = c(0.37, 0.6, 0.75, 0.2, 1.8, 2.5), end = c(0.45, 0.7, 0.9, 0.4, 2, 3), selec = c(1,2,3,1,2,3),sound.files = c(rep("JS001.wav",3),rep("JS002.wav", 3)), note_label = "Curve")
get_gaps(unit_table)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.