/RUtils

Useful R function

Primary LanguageR

Useful R function

1. Convert DOI to R Package Citation

doi2rpkgcita = \(doi){
  return(rcrossref::cr_cn(dois = doi, format = "bibentry"))
}

2. Print html to PDF

pagedown::chrome_print('./xxxxx.html',
                       './xxxxx.pdf')

3. Convert Slides PDF to PNG

pdftools::pdf_convert(
  "./xxxxx.pdf",
  format = "png",
  pages = NULL,
  filenames = sprintf("./xxxxx/fig_%02d.png", 1:??),
  dpi = 300
)