An open API service indexing awesome lists of open source software.

https://github.com/expersso/pdftables

Programmatic Conversion of PDF Tables With R
https://github.com/expersso/pdftables

Last synced: 5 months ago
JSON representation

Programmatic Conversion of PDF Tables With R

Awesome Lists containing this project

README

        

---
output:
md_document:
variant: markdown_github
---

# pdftables

[![CRAN_Status_Badge](http://www.r-pkg.org/badges/version/pdftables)](http://cran.r-project.org/web/packages/pdftables)
[![Travis-CI Build Status](https://travis-ci.org/expersso/pdftables.svg?branch=master)](https://travis-ci.org/expersso/pdftables)
[![Cranlogs Downloads](http://cranlogs.r-pkg.org/badges/grand-total/pdftables)](http://cran.r-project.org/web/packages/pdftables)

```{r options, echo=FALSE}
knitr::opts_chunk$set(cache = FALSE, warning = FALSE, error = FALSE,
fig.path = "", eval=FALSE)
```

### Introduction

The `pdftables` package allows the user to convert PDF tables to formats more
amenable to analysis (csv, XML, or XLSX) by wrapping the
[PDFTables API](https://pdftables.com).

The package can be installed from either CRAN or Github (development version):

```{r install}
# From CRAN
install.packages("pdftables")

# From Github
library(devtools)
install_github("expersso/pdftables")

library(pdftables)
```

To use the package the user first needs to sign up to the
[PDFTables API](https://pdftables.com/join) to get an API token (they offer a
free package that allows up to 50 pages).

### Usage Example

In the following example we first write the `iris` dataset to a `.csv` file. We
then open that file and print it as a `.pdf` file. Using the `convert_pdf`
function we then upload that PDF to the [PDFTables API](https://pdftables.com)
which parses and returns the converted file as `test2.csv`.

(Note: All functions in the package require that you provide your api key in the
`api_key` argument. By default this looks for an environment variable called
`pdftable_api`, but you can also provide it directly.)

```{r}
write.csv(head(iris, 20), file = "test.csv", row.names = FALSE)

# Open test.csv and print as PDF to "test.pdf"

convert_pdf("test.pdf", "test2.csv")
# Converted test.pdf to test2.csv
```

![](vignettes/example.png)

If the `output_file` argument is omitted, the name of the output file will be
the same as the input file, but with the right file extension.

The package (and API) supports converting PDFs to `.csv`, `.xml`, and `.xlsx`.

Note that the conversion sometimes fails to recover the underlying data exactly,
so you may have to open the retrieved file and make some manual corrections.

The `get_remaining` function shows you how many pages you have remaining.

```{r}
get_remaining()
```