Description Usage Arguments Value References Examples
Acoustic Complexity Index (ACI) from Pieretti, et al. 2011. The ACI is based on the "observation that many biotic sounds, such as bird songs, are characterized by an intrinsic variability of intensities, while some types of human generated noise (such as car passing or airplane transit) present very constant intensity values" (Pieretti, et al. 2011).
The index was tested to the ACItot calculated using SoundscapeMeter v 1.0.14.05.2012, courtesy of A. Farina.
The results given are accumulative. Very long samples will return very large values for ACI. I recommend to divide by number of minutes to get a range of values easier to compare.
1 2 | acoustic_complexity(soundfile, min_freq = NA, max_freq = NA, j = 5, fft_w = 512)
|
soundfile |
an object of class |
min_freq |
miminum frequency to use when calculating the value, in Hertz. The default is |
max_freq |
maximum frequency to use when calculating the value, in Hertz. The default is the maximum for the file. |
j |
the cluster size, in seconds. |
fft_w |
FFT window to use. |
Returns a list with three objects per channel
AciTotAll_left |
the ACI total for the left channel |
AciTotAll_right |
the ACI total for the right channel |
AciTotAll_left_bymin |
the ACI total for the left channel divided by the number of minutes |
AciTotAll_right_bymin |
the ACI total for the right channel divided by the number of minutes |
aci_fl_left_vals |
values of ACI(fl) for the left channel |
aci_fl_right_vals |
values of ACI(fl) for the right channel |
aci_left_matrix |
Matrix of all values before calculating ACI(fl) for the left channel |
aci_right_matrix |
Matrix of all values before calculating ACI(fl) for the right channel |
Pieretti, N., A. Farina, and D. Morri. 2011. A new methodology to infer the singing activity of an avian community: The Acoustic Complexity Index (ACI). Ecological Indicators 11: 868-873. doi: 10.1016/j.ecolind.2010.11.005
1 2 3 4 5 6 | data(tropicalsound)
ACI <- acoustic_complexity(tropicalsound)
print(ACI$AciTotAll_left)
summary(ACI)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.