Learn R Programming

reporter (version 1.4.6)

page_header: Add a page header

Description

This function adds a page header to the report. The page header will appear at the top of each page of the report.

Usage

page_header(
  x,
  left = "",
  right = "",
  blank_row = "none",
  width = NULL,
  center = ""
)

Value

The modified report specification.

Arguments

x

The report object.

left

The left page header text. May be a single string or a vector of strings.

right

The right page header text. May be a single string or a vector of strings.

blank_row

Whether to create a blank row below the page header. Valid values are 'below' and 'none'. Default is 'none'.

width

Widths for left, center, and right columns of the page header, passed as a vector of double values in the report unit of measure. If the vector contains fewer than three widths, the widths passed will be interpreted from left to right, and any unassigned column widths will be calculated from the remaining width on the page. For example, if two values are assigned, they will be interpreted as left and center, and the right column width will be calculated. Setting a cell width to zero (0) will remove that column from the page header entirely. To set the left and right widths only, pass a zero for the center cell, i.e. width = c(6, 0, 3) for a total width of 9 inches.

center

The center page header text. May be a single string or a vector of strings. By default, the center column is not displayed. To display it, either assign a value on this parameter, or assign a width on the "width" parameter.

Details

The page header may contain text on the left or right. Use the appropriate parameters to specify the desired text. Only one page header is allowed on a report. The page header will be repeated on every page of the report. Multiple text values for each side may be specified as a vector of strings.

If the width of the page header string exceeds the available space, an error will be generated. There is also a limit of 5 page header strings per each side.

There are two special tokens to generate page numbers: [pg] and [tpg]. Use [pg] to indicate the current page number. Use [tpg] to indicate the total number of pages in the report. These tokens may be placed anywhere in the page header or page footer.

Each header string must fit within the available space. The reporter package will not wrap headers. If a header string does not fit within the available space, an error will be generated. In these situations, either shorten the header string or split it into multiple headers that each fit within the available space.

See Also

Other report: add_content(), create_report(), footer_image(), footnotes(), header_image(), options_fixed(), page_by(), page_footer(), print.report_spec(), set_margins(), title_header(), titles(), write_report()

Examples

Run this code
library(magrittr)

# Create temp file path
tmp <- file.path(tempdir(), "mtcars.txt")

dat <- data.frame(name = rownames(mtcars[1:10, ]), mtcars[1:10, 1:5], 
                  stringsAsFactors = FALSE)

# Create the report object
rpt <- create_report(tmp, orientation = "portrait") %>% 
  page_header("Client: Motor Trend", "Study: Cars") %>% 
  titles("MTCARS Sample Report") %>% 
  add_content(create_table(dat)) %>% 
  page_footer(Sys.time(), right = "Page [pg] of [tpg]")

# Write the report to the file system
write_report(rpt)

# Write report to console
writeLines(readLines(tmp, encoding = "UTF-8"))

# Client: Motor Trend                                                Study: Cars
#                              MTCARS Sample Report
# 
#                name                 mpg cyl   disp   hp  drat
#                ----------------------------------------------
#                Mazda RX4             21   6    160  110   3.9
#                Mazda RX4 Wag         21   6    160  110   3.9
#                Datsun 710          22.8   4    108   93  3.85
#                Hornet 4 Drive      21.4   6    258  110  3.08
#                Hornet Sportabout   18.7   8    360  175  3.15
#                Valiant             18.1   6    225  105  2.76
#                Duster 360          14.3   8    360  245  3.21
#                Merc 240D           24.4   4  146.7   62  3.69
#                Merc 230            22.8   4  140.8   95  3.92
#                Merc 280            19.2   6  167.6  123  3.92
# 
# ...
# 
# 2020-10-17 11:53:51                                                Page 1 of 1

Run the code above in your browser using DataLab