Learn R Programming

rtables (version 0.4.0)

append_topleft: Append a description to the 'top-left' materials for the layout

Description

This function adds newlines to the current set of "top-left materials".

Usage

append_topleft(lyt, newlines)

Arguments

lyt

layout object pre-data used for tabulation

newlines

character. The new line(s) to be added to the materials

Value

A PreDataTableLayouts object suitable for passing to further layouting functions, and to build_table.

Details

Adds newlines to the set of strings representing the 'top-left' materials declared in the layout (the content displayed to the left of the column labels when the resulting tables are printed).

Top-left material strings are stored and then displayed exactly as is, no structure or indenting is applied to them either wheyn they are added or when they are displayed.

See Also

top_left

Examples

Run this code
# NOT RUN {
library(dplyr)

lyt <- basic_table() %>%
  split_cols_by("ARM") %>%
  split_cols_by("SEX") %>%
  split_rows_by("RACE") %>%
  append_topleft("Ethnicity") %>%
  analyze("AGE") %>%
  append_topleft("  Age")

DM2 <- DM %>% mutate(RACE = factor(RACE), SEX = factor(SEX))

build_table(lyt, DM2)
# }

Run the code above in your browser using DataLab