View source: R/selection_table.R
is_selection_table | R Documentation |
Class for selections of signals in sound files
is_selection_table(x)
x |
R object. |
An object of class selection_table
created by selection_table
is a list with the following elements:
selections
: data frame containing the frequency/time coordinates of the selections, sound file names, and any additional information
check.resutls
: results of the checks on data consistency using check_sels
A logical argument indicating whether the object class is 'selection_table'
Marcelo Araya-Salas (marcelo.araya@ucr.ac.cr)
selection_table
Check if object is of class "selection_table"
is_selection_table
Check if the object belongs to the class "selection_table"
selection_table
{
# load data
data(list = c("Phae.long1", "Phae.long2", "Phae.long3", "Phae.long4", "lbh_selec_table"))
is_selection_table(lbh_selec_table)
# save wave files in temporary directory
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"))
st <- selection_table(lbh_selec_table, path = tempdir())
is_selection_table(st)
class(st)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.