Extract tables from a file
Arguments
- file
A character string specifying the path or URL to a PDF file.
- pages
An optional integer vector specifying pages to extract from.
- area
An optional list, of length equal to the number of pages specified, where each entry contains a four-element numeric vector of coordinates (top,left,bottom,right) containing the table for the corresponding page. As a convenience, a list of length 1 can be used to extract the same area from all (specified) pages. Only specify
area
orcolumns
. Warning:area
is ignored ifguess
isTRUE
.- columns
An optional list, of length equal to the number of pages specified, where each entry contains a numeric vector of horizontal (x) coordinates separating columns of data for the corresponding page. As a convenience, a list of length 1 can be used to specify the same columns for all (specified) pages. Only specify
area
orcolumns
. Warning:columns
is ignored ifguess
isTRUE
.- col_names
A logical indicating whether to include column names in the output tibbles. Default is
TRUE
.- guess
A logical indicating whether to guess the locations of tables on each page. If
FALSE
,area
orcolumns
must be specified; ifTRUE
,area
andcolumns
are ignored.- method
A string identifying the preferred method of table extraction.
method = "decide"
(default) automatically decide (for each page) whether spreadsheet-like formatting is present and "lattice" is appropriatemethod = "lattice"
use Tabula's spreadsheet extraction algorithmmethod = "stream"
use Tabula's basic extraction algorithm
- output
A function to coerce the Java response object (a Java ArrayList of Tabula Tables) to some output format. The default method, “matrices”, returns a list of character matrices. See Details for other options.
- outdir
Output directory for files if
output
is set to"csv"
,"tsv"
or"json"
, ignored otherwise. If equalsNULL
(default), uses R sessions temporary directorytempdir()
.- password
Optionally, a character string containing a user password to access a secured PDF.
- encoding
Optionally, a character string specifying an encoding for the text, to be passed to the assignment method of
Encoding
.- copy
Specifies whether the original local file(s) should be copied to
tempdir()
before processing.FALSE
by default. The argument is ignored iffile
is URL.- ...
These are additional arguments passed to the internal functions dispatched by
method
.
Value
By default, a list of character matrices. This can be changed by specifying an alternative value of method
(see Details).
Details
This function mimics the behavior of the Tabula command line utility. It returns a list of R character matrices containing tables extracted from a file by default. This response behavior can be changed by using the following options.
output = "tibble"
attempts to coerce the structure returned bymethod = "character"
into a list of tibbles and returns character strings where this fails.output = "character"
returns a list of single-element character vectors, where each vector is a tab-delimited, line-separate string of concatenated table cells.output = "csv"
writes the tables to comma-separated (CSV) files using Tabula's CSVWriter method in the same directory as the original PDF.method = "tsv"
does the same but with tab-separated (TSV) files using Tabula's TSVWriter andmethod = "json"
does the same using Tabula's JSONWriter method. Any of these three methods return the path to the directory containing the extract table files.output = "asis"
returns the Java object reference, which can be useful for debugging or for writing a custom parser.
extract_areas
implements this functionality in an interactive mode allowing the user to specify extraction areas for each page.
Examples
# simple demo file
f <- system.file("examples", "mtcars.pdf", package = "tabulapdf")
# extract tables from only second page
extract_tables(f, pages = 2)
#> [[1]]
#> # A tibble: 1 × 5
#> Sepal.Length Sepal.Width Petal.Length Petal.Width Species
#> <chr> <chr> <chr> <chr> <chr>
#> 1 "5.10\r4.90\r4.70\r4.60\r5.00" "3.50\r3.00\r… "1.40\r1.40… "0.20\r0.2… "setos…
#>