The warbleR package is intended to facilitate the analysis of the structure of animal acoustic signals in R. Users can enter their own data into a workflow that facilitates spectrographic visualization and measurement of acoustic parameters warbleR makes use of the fundamental sound analysis tools of the seewave package, and offers new tools for acoustic structure analysis. These tools are available for batch analysis of acoustic signals.

 

The main features of the package are:

  • The use of loops to apply tasks through acoustic signals referenced in a selection table:

 

warbleR measuring loop

 

  • The production of images files with spectrograms that let users organize data and verify acoustic analyzes:

 

warbleR image loop

 

The package offers functions for:

  • Browse and download recordings of Xeno ‐ Canto
  • Explore, organize and manipulate multiple sound files
  • Detect signals automatically (in frequency and time)
  • Create spectrograms of complete recordings or individual signals
  • Run different measures of acoustic signal structure
  • Evaluate the performance of measurement methods
  • Catalog signals
  • Characterize different structural levels in acoustic signals
  • Statistical analysis of duet coordination
  • Consolidate databases and annotation tables

Most functions allow the parallelization of tasks, which distributes the tasks among several cores to improve computational efficiency. Tools to evaluate the performance of the analysis at each step are also available. All these tools are provided in a standardized workflow for the analysis of the signal structure, making them accessible to a wide range of users, including those without much knowledge of R.

warbleR is a young package (officially published in 2017) currently in a maturation stage:

life cycle

 

Selection tables

These objects are created with the selection_table() function. The function takes data frames containing selection data (name of the sound file, selection, start, end …), verifies if the information is consistent (see the function checksels() for details) and saves the ‘diagnostic’ metadata as an attribute. The selection tables are basically data frames in which the information contained has been corroborated so it can be read by other warbleR functions. The selection tables must contain (at least) the following columns:

  1. sound files (sound.files)
  2. selection (select)
  3. start
  4. end

The sample data “lbh_selec_table” contains these columns:

data("lbh_selec_table")

lbh_selec_table
sound.files channel selec start end bottom.freq top.freq sel.comment rec.comment
Phae.long1.wav 1 1 1.1693549 1.3423884 2.220105 8.604378 c24 NA
Phae.long1.wav 1 2 2.1584085 2.3214565 2.169437 8.807053 c25 NA
Phae.long1.wav 1 3 0.3433366 0.5182553 2.218294 8.756604 c26 NA
Phae.long2.wav 1 1 0.1595983 0.2921692 2.316862 8.822316 c27 NA
Phae.long2.wav 1 2 1.4570585 1.5832087 2.284006 8.888027 c28 NA
Phae.long3.wav 1 1 0.6265520 0.7577715 3.006834 8.822316 c29 NA
Phae.long3.wav 1 2 1.9742132 2.1043921 2.776843 8.888027 c30 NA
Phae.long3.wav 1 3 0.1233643 0.2545812 2.316862 9.315153 c31 NA
Phae.long4.wav 1 1 1.5168116 1.6622365 2.513997 9.216586 c32 NA
Phae.long4.wav 1 2 2.9326920 3.0768784 2.579708 10.235116 c33 NA
Phae.long4.wav 1 3 0.1453977 0.2904966 2.579708 9.742279 c34 NA

 

… and can be converted to the selection_table format like this:

# global parameters
warbleR_options(wav.path = "./examples")

st <- selection_table(X = lbh_selec_table, pb = FALSE)

st
all selections are OK 
object of class 'selection_table' 
 contains a selection table data frame with 11 rows and 9 columns: 
     sound.files channel selec     start       end bottom.freq top.freq sel.comment rec.comment
1 Phae.long1.wav       1     1 1.1693549 1.3423884    2.220105 8.604378         c24          NA
2 Phae.long1.wav       1     2 2.1584085 2.3214565    2.169437 8.807053         c25          NA
3 Phae.long1.wav       1     3 0.3433366 0.5182553    2.218294 8.756604         c26          NA
4 Phae.long2.wav       1     1 0.1595983 0.2921692    2.316862 8.822316         c27          NA
5 Phae.long2.wav       1     2 1.4570585 1.5832087    2.284006 8.888027         c28          NA
6 Phae.long3.wav       1     1 0.6265520 0.7577715    3.006834 8.822316         c29          NA
... and 5 more rows 
and a data frame (check.results) generated by check_sels() (as attribute) 
created by warbleR 1.1.24

Note that the path to the sound files has been provided. This is necessary in order to verify that the data provided conforms to the characteristics of the audio files.

Selection tables have their own class in R:

class(st)
[1] "selection_table" "data.frame"     

 

Extended selection tables

When the extended = TRUE argument the function generates an object of the extended_selection_table class that also contains a list of ‘wave’ objects corresponding to each of the selections in the data. Therefore, the function transforms the selection table into self-contained objects since the original sound files are no longer needed to perform most of the acoustic analysis in warbleR. This can greatly facilitate the storage and exchange of (bio)acoustic data. In addition, it also speeds up analysis, since it is not necessary to read the sound files every time the data is analyzed.

Now, as mentioned earlier, you need the selection_table() function to create an extended selection table. You must also set the argument extended = TRUE (otherwise, the class would be a selection table). The following code converts the sample data into an extended selection table:

#  global parameters
warbleR_options(wav.path = "./examples")

ext_st <- selection_table(X = lbh_selec_table, pb = FALSE, 
          extended = TRUE, confirm.extended = FALSE)
all selections are OK 

 

And that is. Now the acoustic data and the selection data (as well as the additional metadata) are all together in a single R object.

 

Exercise

 

  • Run the example code in the selection_table() function documentation

  • What do the arguments “mar”, “by.song” and “whole.recs” do?

 

Handling extended selection tables

Several functions can be used to deal with objects of this class. You can test if the object belongs to the extended_selection_table:

is_extended_selection_table(ext_st)
[1] TRUE

 

You can subset the selection in the same way that any other data frame and it will still keep its attributes:

ext_st2 <- ext_st[1:2, ]

is_extended_selection_table(ext_st2)
[1] TRUE

There is also a generic version of print() for this class of objects:

## print
print(ext_st)
object of class 'extended_selection_table' 
 contains a selection table data frame with 11 rows and 9 columns: 
       sound.files channel selec start       end bottom.freq top.freq sel.comment rec.comment
1 Phae.long1.wav_1       1     1   0.1 0.2730334    2.220105 8.604378         c24          NA
2 Phae.long1.wav_2       1     1   0.1 0.2630480    2.169437 8.807053         c25          NA
3 Phae.long1.wav_3       1     1   0.1 0.2749187    2.218294 8.756604         c26          NA
4 Phae.long2.wav_1       1     1   0.1 0.2325709    2.316862 8.822316         c27          NA
5 Phae.long2.wav_2       1     1   0.1 0.2261502    2.284006 8.888027         c28          NA
6 Phae.long3.wav_1       1     1   0.1 0.2312195    3.006834 8.822316         c29          NA
... and 5 more rows 
11 wave objects (as attributes): 
[1] "Phae.long1.wav_1" "Phae.long1.wav_2" "Phae.long1.wav_3" "Phae.long2.wav_1" "Phae.long2.wav_2"
[6] "Phae.long3.wav_1"
... and 5 more 
and a data frame (check.results) generated by check_sels() (as attribute) 
the selection table was created by element (see 'class_extended_selection_table') 
1 sampling rate(s): 22.5 
1 bit depth(s): 16 
created by warbleR 1.1.24

… which is equivalent to:

ext_st
object of class 'extended_selection_table' 
 contains a selection table data frame with 11 rows and 9 columns: 
       sound.files channel selec start       end bottom.freq top.freq sel.comment rec.comment
1 Phae.long1.wav_1       1     1   0.1 0.2730334    2.220105 8.604378         c24          NA
2 Phae.long1.wav_2       1     1   0.1 0.2630480    2.169437 8.807053         c25          NA
3 Phae.long1.wav_3       1     1   0.1 0.2749187    2.218294 8.756604         c26          NA
4 Phae.long2.wav_1       1     1   0.1 0.2325709    2.316862 8.822316         c27          NA
5 Phae.long2.wav_2       1     1   0.1 0.2261502    2.284006 8.888027         c28          NA
6 Phae.long3.wav_1       1     1   0.1 0.2312195    3.006834 8.822316         c29          NA
... and 5 more rows 
11 wave objects (as attributes): 
[1] "Phae.long1.wav_1" "Phae.long1.wav_2" "Phae.long1.wav_3" "Phae.long2.wav_1" "Phae.long2.wav_2"
[6] "Phae.long3.wav_1"
... and 5 more 
and a data frame (check.results) generated by check_sels() (as attribute) 
the selection table was created by element (see 'class_extended_selection_table') 
1 sampling rate(s): 22.5 
1 bit depth(s): 16 
created by warbleR 1.1.24

 

You can also join them in rows. Here the original extended_selection_table is divided into 2 and bound again using rbind():

ext_st3 <- ext_st[1:5, ]

ext_st4 <- ext_st[6:11, ]

ext_st5 <- rbind(ext_st3, ext_st4)

#print
ext_st5
object of class 'extended_selection_table' 
 contains a selection table data frame with 11 rows and 9 columns: 
       sound.files channel selec start       end bottom.freq top.freq sel.comment rec.comment
1 Phae.long1.wav_1       1     1   0.1 0.2730334    2.220105 8.604378         c24          NA
2 Phae.long1.wav_2       1     1   0.1 0.2630480    2.169437 8.807053         c25          NA
3 Phae.long1.wav_3       1     1   0.1 0.2749187    2.218294 8.756604         c26          NA
4 Phae.long2.wav_1       1     1   0.1 0.2325709    2.316862 8.822316         c27          NA
5 Phae.long2.wav_2       1     1   0.1 0.2261502    2.284006 8.888027         c28          NA
6 Phae.long3.wav_1       1     1   0.1 0.2312195    3.006834 8.822316         c29          NA
... and 5 more rows 
11 wave objects (as attributes): 
[1] "Phae.long1.wav_1" "Phae.long1.wav_2" "Phae.long1.wav_3" "Phae.long2.wav_1" "Phae.long2.wav_2"
[6] "Phae.long3.wav_1"
... and 5 more 
and a data frame (check.results) generated by check_sels() (as attribute) 
the selection table was created by element (see 'class_extended_selection_table') 
1 sampling rate(s): 22.5 
1 bit depth(s): 16 
created by warbleR 1.1.24
# are they equal?
all.equal(ext_st, ext_st5)
[1] TRUE

 

The ‘wave’ objects can be read individually using read_wave(), a wrapper for the readWave() function of tuneR, which can handle extended selection tables:

wv1 <- read_wave(X = ext_st, index = 3, from = 0, to = 0.37)

 

These are regular ‘wave’ objects:

class(wv1)
[1] "Wave"
attr(,"package")
[1] "tuneR"
wv1

Wave Object
    Number of Samples:      8325
    Duration (seconds):     0.37
    Samplingrate (Hertz):   22500
    Channels (Mono/Stereo): Mono
    PCM (integer format):   TRUE
    Bit (8/16/24/32/64):    16 
spectro(wv1, wl = 150, grid = FALSE, scale = FALSE, ovlp = 90)

 

par(mfrow = c(3, 2), mar = rep(0, 4))

for(i in 1:6){
  
  wv <- read_wave(X = ext_st, index = i, from = 0.05, to = 0.32)

  spectro(wv, wl = 150, grid = FALSE, scale = FALSE, axisX = FALSE,
          axisY = FALSE, ovlp = 90)

}

 

The read_wave() function requires the selection table, as well as the row index (i.e. the row number) to be able to read the ‘wave’ objects. It can also read a regular ‘wave’ file if the path is provided.

Note that other functions that modify data frames are likely to delete the attributes in which the ‘wave’ objects and metadata are stored. For example, the merge and the extended selection box will remove its attributes:

# create new data base
Y <- data.frame(sound.files = ext_st$sound.files, site = "La Selva", lek = c(rep("SUR", 5), rep("CCL", 6)))

# combine
mrg_ext_st <- merge(ext_st, Y, by = "sound.files")

# check class
is_extended_selection_table(mrg_ext_st)
[1] FALSE

 

In this case, we can use the fix_extended_selection_table() function to transfer the attributes of the original extended selection table:

# fix
mrg_ext_st <- fix_extended_selection_table(X = mrg_ext_st, Y = ext_st)

# check class
is_extended_selection_table(mrg_ext_st)
[1] TRUE

 

This works as long as some of the original sound files are retained and no other selections are added.

& nbsp;

Selection table size

The size of the extended selection box will depend on the number of selections, the sampling rate, the duration of the selection and the length of margins (i.e. additional time you want to keep on each side of the selection). In this example, a selection table with 1000 selections is created simply by repeating the sample data frame several times and then is converted to an extended selection table:

lng.selec.table <- do.call(rbind, replicate(100, lbh_selec_table, 
                        simplify = FALSE))[1:1000,]

lng.selec.table$selec <- 1:nrow(lng.selec.table)

nrow(lng.selec.table)

lng_ext_st <- selection_table(X = lng.selec.table, pb = FALSE, 
                        extended = TRUE, confirm.extended = FALSE)

lng_ext_st
all selections are OK 
object of class 'extended_selection_table' 
 contains a selection table data frame with 1000 rows and 9 columns: 
       sound.files channel selec start       end bottom.freq top.freq sel.comment rec.comment
1 Phae.long1.wav_1       1     1   0.1 0.2730334    2.220105 8.604378         c24          NA
2 Phae.long1.wav_2       1     1   0.1 0.2630480    2.169437 8.807053         c25          NA
3 Phae.long1.wav_3       1     1   0.1 0.2749187    2.218294 8.756604         c26          NA
4 Phae.long2.wav_4       1     1   0.1 0.2325709    2.316862 8.822316         c27          NA
5 Phae.long2.wav_5       1     1   0.1 0.2261502    2.284006 8.888027         c28          NA
6 Phae.long3.wav_6       1     1   0.1 0.2312195    3.006834 8.822316         c29          NA
... and 994 more rows 
1000 wave objects (as attributes): 
[1] "Phae.long1.wav_1" "Phae.long1.wav_2" "Phae.long1.wav_3" "Phae.long2.wav_4" "Phae.long2.wav_5"
[6] "Phae.long3.wav_6"
... and 994 more 
and a data frame (check.results) generated by check_sels() (as attribute) 
the selection table was created by element (see 'class_extended_selection_table') 
1 sampling rate(s): 22.5 
1 bit depth(s): 16 
created by warbleR 1.1.24
format(object.size(lng_ext_st), units = "auto")
[1] "31.4 Mb"

 

As you can see, the object size is only ~ 31 MB. Then, as a guide, a selection box with 1000 selections similar to those of ‘lbh_selec_table’ (average duration of ~ 0.15 seconds) at a sampling rate of 22.5 kHz and the default margin (mar = 0.1) will generate an extended selection box ~ 31 MB or ~ 310 MB for a selection table of 10,000 rows.

 

Analysis using extended selection tables

These objects can be used as input for most warbleR functions. Here are some examples of warbleR functions using extended_selection_table:

Spectral parameters

#  spectrographic parameters
sp <- specan(ext_st)

sp
sound.files selec top.freq bottom.freq duration meanfreq sd freq.median freq.Q25 freq.Q75 freq.IQR time.median time.Q25 time.Q75 time.IQR skew kurt sp.ent time.ent entropy sfm meandom mindom maxdom dfrange modindx startdom enddom dfslope meanpeakf
Phae.long1.wav_1 1 8.604378 2.220105 0.1730334 5.981221 1.399804 6.331716 5.296584 6.869521 1.572937 0.0798564 0.0532376 0.1197846 0.0665470 2.001382 7.025606 0.9434888 0.9493322 0.8956843 0.6518306 6.663993 5.251465 7.360840 2.109375 2.895833 7.316895 7.185059 -0.7619101 7.108806
Phae.long1.wav_2 1 8.807053 2.169437 0.1630480 5.997299 1.422930 6.212125 5.328746 6.880795 1.552049 0.0815333 0.0407667 0.1223000 0.0815333 1.918356 7.334323 0.9468217 0.9536154 0.9029038 0.6678647 6.830116 5.295410 8.283691 2.988281 2.661765 7.185059 7.229004 0.2695238 6.931635
Phae.long1.wav_3 1 8.756604 2.218294 0.1749187 6.020600 1.515536 6.428439 5.152811 6.983309 1.830498 0.0941949 0.0538256 0.1345641 0.0807385 2.495361 11.139125 0.9450824 0.9515916 0.8993325 0.6715892 6.773856 4.899902 8.371582 3.471680 3.240506 7.185059 7.185059 0.0000000 6.798757
Phae.long2.wav_1 1 8.822316 2.316862 0.1325709 6.398304 1.340412 6.595971 5.607323 7.380852 1.773529 0.0736543 0.0589235 0.1031160 0.0441926 1.568523 6.016392 0.9424661 0.9433998 0.8891223 0.6086184 6.341309 5.075684 7.404785 2.329102 2.830189 5.075684 6.657715 11.9334722 7.463147
Phae.long2.wav_2 1 8.888027 2.284006 0.1261502 6.311837 1.370040 6.602020 5.609829 7.213209 1.603380 0.0840889 0.0560593 0.0981037 0.0420444 2.468996 10.884349 0.9357710 0.9436684 0.8830575 0.6151042 6.411621 5.075684 7.580566 2.504883 2.087719 5.075684 7.580566 19.8563528 6.710171
Phae.long3.wav_1 1 8.822316 3.006834 0.1312195 6.609862 1.091271 6.670130 6.067212 7.341734 1.274522 0.0583111 0.0437333 0.1020444 0.0583111 1.768726 6.657847 0.9303836 0.9460672 0.8802054 0.5664490 6.481934 4.899902 7.009277 2.109375 1.520833 4.899902 6.965332 15.7402610 6.710171
Phae.long3.wav_2 1 8.888027 2.776843 0.1301789 6.639859 1.117356 6.674164 6.105325 7.427493 1.322168 0.0723210 0.0433926 0.1012494 0.0578568 1.545851 4.969900 0.9232849 0.9490351 0.8762298 0.5317422 6.244629 5.031738 6.701660 1.669922 1.368421 5.031738 6.613770 12.1527447 6.665879
Phae.long3.wav_3 1 9.315153 2.316862 0.1312170 6.586642 1.254184 6.654583 6.037086 7.394054 1.356967 0.0583111 0.0437333 0.1020444 0.0583111 1.802571 5.887155 0.9191976 0.9533815 0.8763459 0.5258964 6.231445 5.427246 6.833496 1.406250 1.656250 5.471191 6.657715 9.0424551 6.710171
Phae.long4.wav_1 1 9.216586 2.513997 0.1454249 6.222242 1.479588 6.236892 5.459282 7.310408 1.851126 0.0872533 0.0436267 0.1163378 0.0727111 1.273726 4.455567 0.9643619 0.9520564 0.9181270 0.7600417 6.270197 5.119629 7.844238 2.724609 2.709677 5.383301 6.262207 6.0437118 6.222951
Phae.long4.wav_2 1 10.235116 2.579708 0.1441864 6.468553 1.591447 6.341477 5.633543 7.576892 1.943349 0.0865067 0.0432533 0.1153422 0.0720889 1.693645 6.433359 0.9585328 0.9526078 0.9131058 0.7194606 6.294167 4.108887 8.151855 4.042969 2.478261 5.427246 4.108887 -9.1434347 6.222951
Phae.long4.wav_3 1 9.742279 2.579708 0.1450989 6.122156 1.541046 6.081716 5.178639 7.239860 2.061221 0.0870667 0.0435333 0.1160889 0.0725556 1.083042 4.194037 0.9642064 0.9536971 0.9195608 0.7332565 6.150346 4.943848 7.888184 2.944336 3.149254 5.339355 5.031738 -2.1200514 5.912903

 

Signal-to-noise ratio

snr <- sig2noise(ext_st, mar = 0.05)

snr
sound.files channel selec start end bottom.freq top.freq sel.comment rec.comment SNR
Phae.long1.wav_1 1 1 0.1 0.2730334 2.220105 8.604378 c24 NA 21.17229
Phae.long1.wav_2 1 1 0.1 0.2630480 2.169437 8.807053 c25 NA 20.36896
Phae.long1.wav_3 1 1 0.1 0.2749187 2.218294 8.756604 c26 NA 19.18211
Phae.long2.wav_1 1 1 0.1 0.2325709 2.316862 8.822316 c27 NA 23.27961
Phae.long2.wav_2 1 1 0.1 0.2261502 2.284006 8.888027 c28 NA 26.21774
Phae.long3.wav_1 1 1 0.1 0.2312195 3.006834 8.822316 c29 NA 25.34264
Phae.long3.wav_2 1 1 0.1 0.2301789 2.776843 8.888027 c30 NA 25.51099
Phae.long3.wav_3 1 1 0.1 0.2312170 2.316862 9.315153 c31 NA 24.68619
Phae.long4.wav_1 1 1 0.1 0.2454249 2.513997 9.216586 c32 NA 27.61899
Phae.long4.wav_2 1 1 0.1 0.2441864 2.579708 10.235116 c33 NA 28.87451
Phae.long4.wav_3 1 1 0.1 0.2450989 2.579708 9.742279 c34 NA 24.30149

 

Dynamic time warping (DTW)

dtw.dist <- dfDTW(ext_st, img = FALSE)

dtw.dist
measuring dominant frequency contours (step 1 of 2):
measuring dominant frequency:calculating DTW distances (step 2 of 2, no progress bar):
Phae.long1.wav_1-1 Phae.long1.wav_2-1 Phae.long1.wav_3-1 Phae.long2.wav_1-1 Phae.long2.wav_2-1 Phae.long3.wav_1-1 Phae.long3.wav_2-1 Phae.long3.wav_3-1 Phae.long4.wav_1-1 Phae.long4.wav_2-1 Phae.long4.wav_3-1
Phae.long1.wav_1-1 0.000 8.631 4.343 16.633 16.611 13.813 15.675 15.516 18.661 20.886 21.559
Phae.long1.wav_2-1 8.631 0.000 6.981 22.115 29.123 16.735 22.374 23.024 15.824 16.635 19.452
Phae.long1.wav_3-1 4.343 6.981 0.000 18.252 20.535 15.206 18.451 16.468 17.262 19.147 21.154
Phae.long2.wav_1-1 16.633 22.115 18.252 0.000 12.159 10.369 11.213 12.043 12.446 13.535 15.304
Phae.long2.wav_2-1 16.611 29.123 20.535 12.159 0.000 6.762 5.341 8.698 17.521 20.599 18.922
Phae.long3.wav_1-1 13.813 16.735 15.206 10.369 6.762 0.000 3.639 4.422 13.252 15.629 15.669
Phae.long3.wav_2-1 15.675 22.374 18.451 11.213 5.341 3.639 0.000 3.644 13.655 15.946 14.420
Phae.long3.wav_3-1 15.516 23.024 16.468 12.043 8.698 4.422 3.644 0.000 11.029 13.718 12.302
Phae.long4.wav_1-1 18.661 15.824 17.262 12.446 17.521 13.252 13.655 11.029 0.000 5.381 5.880
Phae.long4.wav_2-1 20.886 16.635 19.147 13.535 20.599 15.629 15.946 13.718 5.381 0.000 6.201
Phae.long4.wav_3-1 21.559 19.452 21.154 15.304 18.922 15.669 14.420 12.302 5.880 6.201 0.000

 

Performance

The use of extended_selection_table objects can improve performance (in our case, measured as time). Here we use microbenchmark to compare the performance of sig2noise() and ggplot2 to plot the results:

# load packages
library(microbenchmark)
library(ggplot2)

# take first 100 selections
mbmrk.snr <- microbenchmark(extended = sig2noise(lng_ext_st[1:100, ], 
      mar = 0.05), regular = sig2noise(lng.selec.table[1:100, ], 
                    mar = 0.05), times = 50)

autoplot(mbmrk.snr) + ggtitle("sig2noise")
Coordinate system already present. Adding new coordinate system, which will replace the existing one.

 

The function runs much faster in the extended selection tables. Performance gain is likely to improve when longer recordings and data sets are used (that is, to compensate for computer overload).

 

Create selections ‘by song’

The extended selection above were made by element. That is, each sound file within the object contains a single selection (that is, a 1: 1 correspondence between the selections and the ‘wave’ objects). However, extended selection tables can also be created using a higher hierarchical level with the argument by.song. In this case, “song” represents a higher level that contains one or more selections and that the user may want to keep together for a particular analysis (for example, the duration of the intervals). The by.song argument takes the name of the column of characters or factors with the IDs of the different" songs "within a sound file (note that the function assumes that a given song can only be found in only one sound file, so the selections with the same song ID, but from different sound files are taken as different ‘songs’).

To create a selection table by song, let’s add an artificial song column to our example data in which each of the sound files has 2 songs:

# add column
lbh_selec_table$song <- c(1, 1, 2, 1, 2, 1, 1, 2, 1, 2, 2)

 

The data looks like this:

sound.files channel selec start end bottom.freq top.freq sel.comment rec.comment song
Phae.long1.wav 1 1 1.16935 1.34239 2.2201 8.6044 c24 NA 1
Phae.long1.wav 1 2 2.15841 2.32146 2.1694 8.8071 c25 NA 1
Phae.long1.wav 1 3 0.34334 0.51826 2.2183 8.7566 c26 NA 2
Phae.long2.wav 1 1 0.15960 0.29217 2.3169 8.8223 c27 NA 1
Phae.long2.wav 1 2 1.45706 1.58321 2.2840 8.8880 c28 NA 2
Phae.long3.wav 1 1 0.62655 0.75777 3.0068 8.8223 c29 NA 1
Phae.long3.wav 1 2 1.97421 2.10439 2.7768 8.8880 c30 NA 1
Phae.long3.wav 1 3 0.12336 0.25458 2.3169 9.3151 c31 NA 2
Phae.long4.wav 1 1 1.51681 1.66224 2.5140 9.2166 c32 NA 1
Phae.long4.wav 1 2 2.93269 3.07688 2.5797 10.2351 c33 NA 2
Phae.long4.wav 1 3 0.14540 0.29050 2.5797 9.7423 c34 NA 2

 

Now we can create an extended selection table ‘by song’ using the column name ‘song’ as input for the argument by.song:

bs_ext_st <- selection_table(X = lbh_selec_table, extended = TRUE,
                              confirm.extended = FALSE, by.song = "song")
checking selections (step 1 of 2):
all selections are OK 
saving wave objects into extended selection table (step 2 of 2):

In this case, we should only have 8 ‘wave’ objects instead of 11 as when the object was created ‘by selection’:

# by element
length(attr(ext_st, "wave.objects"))
[1] 11
# by song
length(attr(bs_ext_st, "wave.objects"))
[1] 8

Again, these objects can also be used in any analyzes:

# signal to noise ratio
bs_snr <- sig2noise(bs_ext_st, mar = 0.05)
sound.files channel selec start end bottom.freq top.freq sel.comment rec.comment song SNR
Phae.long1.wav-song_1 1 1 0.1000 0.27303 2.2201 8.6044 c24 NA 1 21.172
Phae.long1.wav-song_1 1 2 1.0891 1.25210 2.1694 8.8071 c25 NA 1 20.371
Phae.long1.wav-song_2 1 1 0.1000 0.27492 2.2183 8.7566 c26 NA 2 19.182
Phae.long2.wav-song_1 1 1 0.1000 0.23257 2.3169 8.8223 c27 NA 1 23.280
Phae.long2.wav-song_2 1 1 0.1000 0.22615 2.2840 8.8880 c28 NA 2 26.218
Phae.long3.wav-song_1 1 1 0.1000 0.23122 3.0068 8.8223 c29 NA 1 25.343
Phae.long3.wav-song_1 1 2 1.4477 1.57784 2.7768 8.8880 c30 NA 1 25.511
Phae.long3.wav-song_2 1 1 0.1000 0.23122 2.3169 9.3151 c31 NA 2 24.686
Phae.long4.wav-song_1 1 1 0.1000 0.24542 2.5140 9.2166 c32 NA 1 27.619
Phae.long4.wav-song_2 1 1 2.8873 3.03148 2.5797 10.2351 c33 NA 2 28.885
Phae.long4.wav-song_2 1 2 0.1000 0.24510 2.5797 9.7423 c34 NA 2 24.301

 

Exercise

 

  • Compare the size of an extended selection table created by element to that of one created by song using the sample data

 

Sharing acoustic data

This new object class allows to share complete data sets, including acoustic data. For example, the following code downloads a subset of the data used in Araya-Salas et al (2017) (can also be downloaded from here):

URL <- "https://marceloarayasalas.weebly.com/uploads/2/5/5/2/25524573/extended.selection.table.araya-salas.et.al.2017.bioacoustics.100.sels.rds"

dat <- readRDS(gzcon(url(URL)))

nrow(dat)
[1] 100
format(object.size(dat), units = "auto")
[1] "10.1 Mb"

The total size of the 100 sound files from which these selections were taken adds up to 1.1 GB. The size of the extended selection table is only 10.1 MB.

This data is ready to be used:

sp <- specan(dat, bp = c(2, 10))

head(sp)
sound.files selec duration meanfreq sd freq.median freq.Q25 freq.Q75 freq.IQR time.median time.Q25 time.Q75 time.IQR skew kurt sp.ent time.ent entropy sfm meandom mindom maxdom dfrange modindx startdom enddom dfslope meanpeakf
Pyrrhura rupicola Macaulay Library 132 .wav_2 1 0.15048 4.6573 1.7687 4.2876 3.4364 5.6309 2.1945 0.06542 0.03925 0.10468 0.06542 2.6037 11.8778 0.92350 0.95082 0.87808 0.54136 3.7540 2.0241 6.8476 4.8234 5.3750 4.5220 2.0241 -16.5996 4.0208
0.CCE.1971.4.4.ITM70863A-23.wav_1 1 0.16556 6.2549 1.6484 6.3505 5.6012 7.2024 1.6012 0.08278 0.03821 0.12098 0.08278 2.3800 10.1442 0.93976 0.94104 0.88435 0.63279 6.5860 3.5745 8.2257 4.6512 3.6852 8.2257 6.9337 -7.8036 6.0961
0.SAT.1989.6.2.ITM70866A-32.wav_5 1 0.15425 6.0966 1.6471 5.8475 4.9067 7.3982 2.4915 0.08355 0.04499 0.11568 0.07069 1.9706 7.2669 0.93922 0.94323 0.88591 0.60958 6.2343 3.3161 8.1395 4.8234 3.2143 6.4169 3.3161 -20.1021 7.0473
23.CCE.2011.7.21.7.42.wav_6 1 0.15496 5.4229 1.4630 5.1768 4.4278 6.4358 2.0081 0.06457 0.03874 0.10331 0.06457 2.1063 8.0489 0.92273 0.94475 0.87175 0.50601 5.0284 2.3687 7.7950 5.4264 2.1587 7.3644 2.3687 -32.2397 4.3667
Cyanoliseus patagonus Macaulay Library 79 .wav_5 1 0.15989 3.1547 1.2266 2.5696 2.2441 3.6526 1.4084 0.06395 0.03837 0.09593 0.05756 4.5456 29.4710 0.82316 0.93566 0.77020 0.12679 2.5906 2.0241 4.4358 2.4117 3.0714 2.4548 2.2825 -1.0774 2.2913
0.HC1.2011.8.7.9.20.wav_4 1 0.15380 6.0295 1.7578 6.4163 4.9203 7.1837 2.2634 0.07690 0.04486 0.10895 0.06409 4.1612 27.9016 0.92885 0.94596 0.87866 0.60436 6.2550 4.9526 8.5702 3.6176 4.0714 5.3833 4.9526 -2.8002 4.9720

… and the spectrograms can be visualized as follows:

par(mfrow = c(3, 2), mar = rep(0, 4))

for(i in 1:6){
  
  wv <- read_wave(X = dat, index = i, from = 0.17, to = 0.4)

  spectro(wv, wl = 250, grid = FALSE, scale = FALSE, axisX = FALSE,
          axisY = FALSE, ovlp = 90, flim = c(0, 12), 
          palette = reverse.gray.colors.1)
}

The NatureSounds package contains an extended selection table with long-billed hermit hummingbirds vocalizations from 10 different song types:

data("Phae.long.est")

Phae.long.est
object of class 'extended_selection_table' 
 contains a selection table data frame with 50 rows and 8 columns: 
  sound.files selec start     end bottom.freq top.freq lek lek.song.type
1    BR2-A1-1     1   0.1 0.26761      1.6020   10.952 BR2        BR2-A1
2    BR2-A1-2     1   0.1 0.26521      1.8914   11.025 BR2        BR2-A1
3    BR2-A1-3     1   0.1 0.27162      1.7177   11.025 BR2        BR2-A1
4    BR2-A1-4     1   0.1 0.27009      1.8335   11.025 BR2        BR2-A1
5    BR2-A1-5     1   0.1 0.27697      2.1229   11.025 BR2        BR2-A1
6    CCE-I3-1     1   0.1 0.24899      1.7551   11.025 CCE        CCE-I3
... and 44 more rows 
50 wave objects (as attributes): 
[1] "BR2-A1-1" "BR2-A1-2" "BR2-A1-3" "BR2-A1-4" "BR2-A1-5" "CCE-I3-1"
... and 44 more 
and a data frame (check.results) generated by check_sels() (as attribute) 
the selection table was created by element (see 'class_extended_selection_table') 
1 sampling rate(s): 22.05 
1 bit depth(s): 8 
created by warbleR < 1.1.21
table(Phae.long.est$lek.song.type)

BR2-A1 CCE-I3 LOC-D1 SAT-F1 STR-A2 SUR-E1 SUR-K4 TR1-C2 TR1-C5 TR1-D4 
     5      5      5      5      5      5      5      5      5      5 

The ability to compress large data sets and the ease of performing analyzes that require a single R object can simplify the exchange of data and the reproducibility of bioacoustic analyzes.

 

Exercise

 

  • Download the extended selection tables of bat social calls from the this figshare repository (scroll till the end of the file list) and create spectrograms for the first 5 selections of each table (either specreator() or spectro() would work)

 

warbleR functions and the workflow of analysis in bioacoustics

Bioacoustic analyzes generally follow a specific processing sequence and analysis. This sequence can be represented schematically like this:

analysis workflow

 

We can group warbleR functions according to the bioacoustic analysis stages.

 

Get and prepare recordings

The querxc() function allows you to search and download sounds from the free access database Xeno-Canto. You can also convert .mp3 files to .wav, change the sampling rate of the files and correct corrupt files, among other functions.

Function Description Works on Output
check_wavs verify if sound files can be read multiple wave files data frame
consolidate consolidate sound files in a single folder multiple wave files data frame and wave files
fix_wavs fix waves that cannot be read in R multiple wave files wave files
mp32wav convert multiple mp3 files to wav format multiple mp3 files wave files
quer_xc Search and download mp3 files from Xeno-Canto Scientific names/data frame mp3 files
resample_est resample wave objects in ext. selection tables extended selection tables extended selection tables
rm_channels remove channels in multiple wave files multiple wave files wave files
rm_sil remove silences in multiple wave files multiple wave files wave files
wav_dur measures duration in multiple wave files multiple wave files data frame
wav_info extract recording parameters from multiple wave files multiple wave files data frame

 

Annotating sound

It is recommended to make annotations in other programs and then import them into R (for example in Raven and import them with the Rraven package). However, warbleR offers some functions to facilitate manual or automatic annotation of sound files, as well as the subsequent manipulation:

Function Description Works on Output
manual_loc manual annotation of wave files multiple wave files data frame, .csv file
freq_range detect frequency range in selection tables multiple wave files data frame
sel_tailor interactive tailoring of selections selection tables selection tables

 

Automatic detections

Automatic detection can significantly speed up acoustic analysis. warbleR offers two main methods for automatic signal detection (cross-correlation and amplitude threshold filter) as well as functions to explore detections:

Function Description Works on Output
find_peaks Find detection peaks auto_detec() & x_corr() output selection tables
auto_detec automatic annotation of wave files multiple wave files data frame, images
x_corr measurec spectrographic cross-correlation selection tables, ext. selection tables (di)similarity matrix
spectrograms create spectrogram images selection tables, ext. selection tables images
full_spec create spectrograms of whole sound files multiple wave files, selection tables, ext. selection tables images

 

Organize annotations

The annotations (or selection tables) can be manipulated and refined with a variety of functions. Selection tables can also be converted into the compact format extended selection tables:

Function Description Works on Output
find_peaks Find detection peaks auto_detec() & x_corr() output selection tables
sel_tailor interactive tailoring of selections selection tables selection tables
sort_colms order columns in an intuitive way selection tables selection tables
cut_sels save selections as individual wave files selection tables wave files
filter_sels subset selection tables based on filtered image files selection tables, ext. selection tables, images selection tables, ext. selection tables
fix_extended_selection_table add wave objects to extended selection tables selection tables extended selection tables
selection_table create selection tables and extended selection tables selection tables selection tables, ext. selection tables
song_param measures acoustic parameters at higher structural levels of organization selection tables, ext. selection tables data frame, selection tables

 

Measure acoustic signal structure

Most warbleR functions are dedicated to quantifying the structure of acoustic signals listed in selection tables using batch processing. For this, 4 main measurement methods are offered:

  1. Spectrographic parameters
  2. Cross correlation
  3. Dynamic time warping (DTW)
  4. Statistical descriptors of cepstral coefficients

Most functions gravitate around these methods, or variations of these methods:

Function Description Works on Output
freq_range detect frequency range in selection tables multiple wave files data frame
song_param measures acoustic parameters at higher structural levels of organization selection tables, ext. selection tables data frame, selection tables
compare_methods compare the performance of methods to measure acoustic structure selection tables, ext. selection tables images
dfDTW measures dynamic time warping (DTW) on dominant frequency contours selection tables, ext. selection tables (di)similarity matrix, images
dfts mesaures dominant frequency contours selection tables, ext. selection tables data frame with frequency contours
ffDTW measures dynamic time warping (DTW) on fundamental frequency contours selection tables, ext. selection tables (di)similarity matrix, images
ffts mesaures fundamental frequency contours selection tables, ext. selection tables data framewith frequency contours
inflections measures number of inflections in frequency contours data frame with frequency contours data frame
mfcc_stats measures statistical descriptors of Mel cepstral coefficients selection tables, ext. selection tables data frame
multi_DTW measures dynamic time warping (DTW) on multiple contours selection tables, ext. selection tables (di)similarity matrix
sig2noise measures signal-to-noise ratio selection tables, ext. selection tables selection tables, ext. selection tables
se_ts measures spectral entropy contours selection tables, ext. selection tables data frame with frequency contours
spec_an measures spectrographic parameters selection tables, ext. selection tables data frame
x_corr measurec spectrographic cross-correlation selection tables, ext. selection tables (di)similarity matrix

 

Exercise

 

  • Compare the performance of specan() on the example ‘lbh_selec_table’ with "the argument ‘fast = TRUE’ vs ‘fast = FALSE’. What does this argument do and which seewave function might be involved?

 

Verify annotations

Functions are provided to detect inconsistencies in the selection tables or modify selection tables. The package also offers several functions to generate spectrograms showing the annotations, which can be organized by annotation categories. This allows you to verify if the annotations match the previously defined categories, which is particularly useful if the annotations were automatically generated.

Function Description Works on Output
check_sels double-check selection tables selection tables selection tables
ovlp_sels finds (time) overlapping selections selection tables, ext. selection tables selection tables, ext. selection tables
catalog creates spectrogram catalog selection tables, ext. selection tables images
catalog2pdf convert catalogs to .pdf images images
spectrograms create spectrogram images selection tables, ext. selection tables images
full_spec create spectrograms of whole sound files multiple wave files, selection tables, ext. selection tables images
full_spec2pdf convert full spectrograms to .pfg images images

 

Visually inspection of annotations and measurements

Function Description Works on Output
snr_specs plots spectrograms highlighting areas where signal-to-noise ratio is measured selection tables, ext. selection tables images
spectrograms create spectrogram images selection tables, ext. selection tables images
track_freqs create spectrogram images including frequency contours selection tables, ext. selection tables images
coor_graph create schematic plots of coordinated signals data frame images
full_spec create spectrograms of whole sound files multiple wave files, selection tables, ext. selection tables images

 

Additional functions

Finally, warbleR offers functions to simplify the use of extended selection tables, organize large numbers of images with spectrograms and generate elaborated signal visualizations:

Function Description Works on Output
is_extended_selection_table check if object is extended selection tables data frame TRUE/FALSE
is_selection_table check if object is selection tables data frame TRUE/FALSE
catalog2pdf convert catalogs to .pdf images images
move_imgs moves images among folders images images
track_harm measures harmonics with highest energy wave object data frame with frequency contours
xc_maps created maps from Xeno-Canto recordings data frame images
coor_test test statistical significance of vocal coordination data frame data frame
full_spec2pdf convert full spectrograms to .pfg images images
color_spectro highlight signals with colors in a spectrogram wave object plot in R
freq_range_detec detect frequency range in wave objetcs wave object data frame, plot in R
open_wd open working directory
phylo_spectro plots phylogenetic trees with spectrograms selection tables plot in R
read_wave read wave files and wave objects selection tables, ext. selection tables wave object
sim_songs simulate songs wave object, wave file and selection table
spec_param creates mosaic plots with spectrograms with different display parameters selection tables, ext. selection tables images
warbleR_options define global parameters for warbleR functions

 

Exercise

 

  • Run the examples of the functions phylo_spectro() and color_spectro()

  • Use the querxc() and xcmaps() functions to explore the geographical distribution of the Xeno-Canto recordings of a species (of bird) of your interest (if any!)

 


References

  1. Araya-Salas M, G Smith-vidaurre & M Webster. 2017. Assessing the effect of sound file compression and background noise on measures of acoustic signal structure. Bioacoustics 4622, 1–17
  2. Araya-Salas M, Smith-Vidaurre G (2017) warbleR: An R package to streamline analysis of animal acoustic signals. Methods Ecol Evol 8:184–191.

 


Session information

R version 3.6.3 (2020-02-29)
Platform: x86_64-pc-linux-gnu (64-bit)
Running under: Ubuntu 20.04 LTS

Matrix products: default
BLAS:   /usr/lib/x86_64-linux-gnu/blas/libblas.so.3.9.0
LAPACK: /usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3.9.0

locale:
 [1] LC_CTYPE=en_US.UTF-8       LC_NUMERIC=C               LC_TIME=es_CR.UTF-8       
 [4] LC_COLLATE=en_US.UTF-8     LC_MONETARY=es_CR.UTF-8    LC_MESSAGES=en_US.UTF-8   
 [7] LC_PAPER=es_CR.UTF-8       LC_NAME=C                  LC_ADDRESS=C              
[10] LC_TELEPHONE=C             LC_MEASUREMENT=es_CR.UTF-8 LC_IDENTIFICATION=C       

attached base packages:
[1] stats     graphics  grDevices utils     datasets  methods   base     

other attached packages:
[1] ggplot2_3.3.0        microbenchmark_1.4-7 kableExtra_1.1.0     warbleR_1.1.24      
[5] NatureSounds_1.0.3   knitr_1.29           seewave_2.1.6        tuneR_1.3.3         

loaded via a namespace (and not attached):
 [1] tidyselect_1.1.0  xfun_0.15         purrr_0.3.4       pbapply_1.4-2     colorspace_1.4-1 
 [6] vctrs_0.3.0       generics_0.0.2    htmltools_0.4.0   viridisLite_0.3.0 yaml_2.2.1       
[11] rlang_0.4.6       pillar_1.4.4      glue_1.4.1        withr_2.2.0       lifecycle_0.2.0  
[16] stringr_1.4.0     munsell_0.5.0     gtable_0.3.0      rvest_0.3.5       evaluate_0.14    
[21] fftw_1.0-6        parallel_3.6.3    highr_0.8         Rcpp_1.0.4.6      readr_1.3.1      
[26] scales_1.1.1      webshot_0.5.2     farver_2.0.3      rjson_0.2.20      hms_0.5.3        
[31] digest_0.6.25     stringi_1.4.6     dplyr_1.0.0       dtw_1.21-3        grid_3.6.3       
[36] tools_3.6.3       bitops_1.0-6      magrittr_1.5      RCurl_1.98-1.2    proxy_0.4-24     
[41] tibble_3.0.1      crayon_1.3.4      pkgconfig_2.0.3   MASS_7.3-51.5     ellipsis_0.3.1   
[46] xml2_1.3.2        rmarkdown_2.1     httr_1.4.1        rstudioapi_0.11   R6_2.4.1         
[51] signal_0.7-6      compiler_3.6.3