body_add_table
From officer v0.3.6
by David Gohel
add table
add a table into an rdocx object
Usage
body_add_table(x, value, style = NULL, pos = "after", header = TRUE,
first_row = TRUE, first_column = FALSE, last_row = FALSE,
last_column = FALSE, no_hband = FALSE, no_vband = TRUE)
Arguments
- x
a docx device
- value
a data.frame to add as a table
- style
table style
- pos
where to add the new element relative to the cursor, one of after", "before", "on".
- header
display header if TRUE
- first_row
Specifies that the first column conditional formatting should be applied. Details for this and other conditional formatting options can be found at http://officeopenxml.com/WPtblLook.php.
- first_column
Specifies that the first column conditional formatting should be applied.
- last_row
Specifies that the first column conditional formatting should be applied.
- last_column
Specifies that the first column conditional formatting should be applied.
- no_hband
Specifies that the first column conditional formatting should be applied.
- no_vband
Specifies that the first column conditional formatting should be applied.
Examples
# NOT RUN {
library(magrittr)
doc <- read_docx() %>%
body_add_table(iris, style = "table_template")
print(doc, target = tempfile(fileext = ".docx") )
# }
Community examples
Looks like there are no examples yet.