Learn R Programming

warbleR (version 1.1.7)

lspec2pdf: lspec2pdf

Description

lspec2pdf combines lspec images in .jpeg format to a single pdf file.

Usage

lspec2pdf(keep.jpeg = TRUE, overwrite = FALSE, parallel = 1, path = NULL, pb = TRUE)

Arguments

keep.jpeg
Logical argument. Indicates whether jpeg files should be kept (default) or remove. (including sound file and page number) should be magnified. Default is 1.
overwrite
Logical argument. If TRUE all jpeg pdf will be produced again when code is rerun. If FALSE only the ones missing will be produced. Default is FALSE.
parallel
Numeric. Controls whether parallel computing is applied. It specifies the number of cores to be used. Default is 1 (i.e. no parallel computing).
path
Character string containing the directory path where the sound files are located. If NULL (default) then the current working directory is used.
pb
Logical argument to control progress bar. Default is TRUE. Note that progress bar is only used when parallel = 1.

Details

The function combines spectrograms for complete sound files from the lspec function into a single pdf (for each sound file).

See Also

lspec, catalog2pdf, https://marce10.github.io/2017-01-07-Create_pdf_files_with_spectrograms_of_full_recordings/

Examples

Run this code
## Not run: ------------------------------------
# # Set temporary working directory
# setwd(tempdir())
# 
# # save sound file examples
# data(list = c("Phae.long1", "Phae.long2"))
# writeWave(Phae.long1,"Phae.long1.wav") 
# writeWave(Phae.long2,"Phae.long2.wav")
# 
# lspec(sxrow = 2, rows = 8, pal = reverse.heat.colors, wl = 300, it = "jpeg")
# 
# #now create single pdf removing jpeg
# lspec2pdf(keep.jpeg = FALSE)
# 
# check this floder
# getwd()
## ---------------------------------------------

Run the code above in your browser using DataLab