R/combine_pdfs.R
combine_pdfs.Rd
Use PyPDF2 python package to combine multiple pdfs into one pdf.
combine_pdfs(input_paths, output_path)
[character()] Existing filepaths to the pdfs that will be combined.
character()
[character(1)] Output filepath for the combined pdf to code file. The directory must exist.
character(1)
Invisibly returns output_path..
output_path
if (FALSE) { combine_pdfs( input_paths = c("diagnostics/USA.pdf", "diagnostics/ZAF.pdf"), output_paths = c("diagnostics/combined.pdf") ) }