The aim of this package is to enhance some important functions in 'tuneR' and 'seewave' packages by the data.table (The Great). For not loosing the tracks of the main packages we add only one 'f_' before the name of each function which represents its faster.
# Install devtools from CRAN
install.packages("devtools")
# Or the development version from GitHub:
# install.packages("devtools")
devtools::install_github("MohammadShahbazi/snappmarketvoice")
For analysing voices manytimes we need to consider many voices, so even a little imporvment in voices will increase performance exponentially.
f_fpeaks
is similar to seewave::fpeaks but faster for the comparison see the below. p=Sys.time()
a=fpeaks(spec,plot = F)
p-Sys.time()
Time difference of -12.9078 mins
p=Sys.time()
a=f_fpeaks(spec)
p-Sys.time()
Time difference of -0.5607369 secs
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.