docx_extract_tbl {docxtractr} | R Documentation |
Extract a table from a Word document
Description
Given a document read with read_docx
and a table to extract (optionally
indicating whether there was a header or not and if cell whitepace trimming is
desired) extract the contents of the table to a data.frame
.
Usage
docx_extract_tbl(
docx,
tbl_number = 1,
header = TRUE,
preserve = FALSE,
trim = TRUE
)
Arguments
docx |
|
tbl_number |
which table to extract (defaults to |
header |
assume first row of table is a header row? (default; |
preserve |
preserve line breaks within a cell? Default: |
trim |
trim leading/trailing whitespace (if any) in cells? (default: |
Value
data.frame
See Also
docx_extract_all
, docx_extract_tbl
,
assign_colnames
Examples
doc3 <- read_docx(system.file("examples/data3.docx", package="docxtractr"))
docx_extract_tbl(doc3, 3)
intracell_whitespace <- read_docx(system.file("examples/preserve.docx", package="docxtractr"))
docx_extract_tbl(intracell_whitespace, 2, preserve=FALSE)
docx_extract_tbl(intracell_whitespace, 2, preserve=TRUE)
[Package docxtractr version 0.6.5 Index]