Learn R Programming

rtables (version 0.6.1)

row_paths: Return List with Table Row/Col Paths

Description

Return List with Table Row/Col Paths

Usage

row_paths(x)

col_paths(x)

Value

a list of paths to each row/column within x

Arguments

x

an rtable object

See Also

cell_values(), fnotes_at_path<-, row_paths_summary(), col_paths_summary()

Examples

Run this code
lyt <- basic_table() %>%
  split_cols_by("ARM") %>%
  analyze(c("SEX", "AGE"))

tbl <- build_table(lyt, 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