Converts a PDF to text with [rt_read_pdf()] and runs [rt_all()] on it, so a PDF can be scored in one call without writing an intermediate text file. Requires the poppler `pdftotext` utility.
Value
The same one-row tibble as [rt_all()], with `article` and `pmid` taken from the PDF file name.
Examples
if (FALSE) { # \dontrun{
pdf_path <- system.file(
"extdata", "PMID32171256-PMC7071725.pdf", package = "rtransparency"
)
rt_all_pdf(pdf_path)
} # }