| paginate_listing | R Documentation | 
Pagination of a listing. This can be vertical for long listings with many
rows and/or horizontal if there are many columns. This function is a wrapper of
formatters::paginate_to_mpfs() and it is mainly meant for exploration and testing.
paginate_listing(
  lsting,
  page_type = "letter",
  font_family = "Courier",
  font_size = 8,
  lineheight = 1,
  landscape = FALSE,
  pg_width = NULL,
  pg_height = NULL,
  margins = c(top = 0.5, bottom = 0.5, left = 0.75, right = 0.75),
  lpp = NA_integer_,
  cpp = NA_integer_,
  colwidths = NULL,
  tf_wrap = !is.null(max_width),
  rep_cols = NULL,
  max_width = NULL,
  col_gap = 3,
  fontspec = font_spec(font_family, font_size, lineheight),
  verbose = FALSE,
  print_pages = TRUE
)
| lsting | ( | 
| page_type | ( | 
| font_family | ( | 
| font_size | ( | 
| lineheight | ( | 
| landscape | ( | 
| pg_width | ( | 
| pg_height | ( | 
| margins | ( | 
| lpp | ( | 
| cpp | ( | 
| colwidths | ( | 
| tf_wrap | ( | 
| rep_cols | ( | 
| max_width | ( | 
| col_gap | ( | 
| fontspec | ( | 
| verbose | ( | 
| print_pages | ( | 
A list of listing_df objects where each list element corresponds to a separate page.
dat <- ex_adae
lsting <- as_listing(dat[1:25, ], disp_cols = c("USUBJID", "AESOC", "RACE", "AETOXGR", "BMRKR1"))
mat <- matrix_form(lsting)
cat(toString(mat))
paginate_listing(lsting, lpp = 10)
paginate_listing(lsting, cpp = 100, lpp = 40)
paginate_listing(lsting, cpp = 80, lpp = 40, verbose = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.