inst/doc/reporter-rtf.R

## ----setup, include = FALSE---------------------------------------------------
knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>"
)

## ----eval=FALSE, echo=TRUE----------------------------------------------------
# library(reporter)
# 
# # Create temporary path
# tmp <- file.path(tempdir(), "example9.docx")
# 
# # Read in prepared data
# df <- iris[1:25, ]
# 
# # Create table
# tbl <- create_table(df, borders = "bottom")
# 
# 
# # Create report and add content
# rpt <- create_report(tmp, output_type = "DOCX", orientation = "portrait",
#                      font = "Times", font_size = 12) %>%
#   set_margins(top = 1, bottom = 1) %>%
#   page_header(left = "Client: 1-800-FLOWERS", right = "Study: Iris") %>%
#   titles("Listing 1.0", "Iris Data Listing") %>%
#   add_content(tbl) %>%
#   footnotes("* Bulletin of the American Iris Society, 1935") %>%
#   page_footer(left = Sys.time(),
#               center = "Confidential",
#               right = "Page [pg] of [tpg]")
# 
# # Write out report
# write_report(rpt)
# 
# # View report
# # file.show(tmp)
# 

Try the reporter package in your browser

Any scripts or data that you put into this service are public.

reporter documentation built on Sept. 12, 2026, 5:09 p.m.