officer (version 0.1.7)

body_add_table: add table

Description

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

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, last_row, first_column, last_column, no_hband, no_vband

logical for Word table options

Examples

Run this code
# NOT RUN {
library(magrittr)

doc <- read_docx() %>%
  body_add_table(iris, style = "table_template")

print(doc, target = "body_add_table.docx" )
# }

Run the code above in your browser using DataCamp Workspace