View source: R/selection_table.R
fix_extended_selection_table | R Documentation |
fix_extended_selection_table
fixes extended selection tables that have lost their attributes
fix_extended_selection_table(X, Y, to.by.song = FALSE)
X |
an object of class 'selection_table' or data frame that contains columns for sound file name (sound.files), selection number (selec), and start and end time of signal (start and end). |
Y |
an object of class 'extended_selection_table' |
to.by.song |
Logical argument to control if the attributes are formatted to a match a 'by.song' extended selection table. This is required when 'X' is created by collapsing an Y by song (see 'by.song' argument in |
An extended selection table.
Marcelo Araya-Salas (marcelo.araya@ucr.ac.cr)
{
data(list = c("Phae.long1", "Phae.long2", "Phae.long3", "Phae.long4", "lbh_selec_table"))
writeWave(Phae.long1, file.path(tempdir(), "Phae.long1.wav"))
writeWave(Phae.long2, file.path(tempdir(), "Phae.long2.wav"))
writeWave(Phae.long3, file.path(tempdir(), "Phae.long3.wav"))
writeWave(Phae.long4, file.path(tempdir(), "Phae.long4.wav"))
# create extended selection table
ext_st <- selection_table(lbh_selec_table, extended = TRUE,
path = tempdir())
# remove attributes
st <- as.data.frame(ext_st)
# check class
class(st)
# fix selection table
st <- fix_extended_selection_table(X = st, Y = ext_st)
# check class
class(st)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.