Learn R Programming

rtables (version 0.4.0)

row_paths: Return List with Table Row/Col Paths

Description

Return List with Table Row/Col Paths

Usage

row_paths(x)

col_paths(x)

Arguments

x

an rtable object

Value

a list of paths to each row/column within x

Examples

Run this code
# NOT RUN {
tbl <- basic_table() %>%
  split_cols_by("ARM") %>%
  analyze(c("SEX", "AGE")) %>%
  build_table(ex_adsl)

tbl

row_paths(tbl)
col_paths(tbl)

cell_values(tbl, c("AGE", "Mean"),  c("ARM", "B: Placebo"))

# }

Run the code above in your browser using DataLab