pag_indices_inner {formatters} | R Documentation |
Find pagination indices from pagination info data frame
Description
Pagination methods should typically call the make_row_df
method
for their object and then call this function on the resulting
pagination info data.frame
.
Usage
pag_indices_inner(
pagdf,
rlpp,
lpp_or_cpp = NA_integer_,
context_lpp_or_cpp = NA_integer_,
min_siblings,
nosplitin = character(),
verbose = FALSE,
row = TRUE,
have_col_fnotes = FALSE,
div_height = 1L,
col_gap = 3L,
has_rowlabels
)
Arguments
pagdf |
( |
rlpp |
( |
lpp_or_cpp |
( |
context_lpp_or_cpp |
( |
min_siblings |
( |
nosplitin |
( |
verbose |
( |
row |
( |
have_col_fnotes |
( |
div_height |
( |
col_gap |
( |
has_rowlabels |
( |
Details
pab_indices_inner
implements the core pagination algorithm (see below)
for a single direction (vertical if row = TRUE
(the default), horizontal otherwise)
based on the pagination data frame and (already adjusted for non-body rows/columns)
lines (or characters) per page.
Value
A list
containing a vector of row numbers, broken up by page.
Pagination Algorithm
Pagination is performed independently in the vertical and horizontal directions based solely on a pagination data frame, which includes the following information for each row/column:
Number of lines/characters rendering the row will take after word-wrapping (
self_extent
)The indices (
reprint_inds
) and number of lines (par_extent
) of the rows which act as context for the rowThe row's number of siblings and position within its siblings
Given lpp
(cpp
) is already adjusted for rendered elements which
are not rows/columns and a data frame of pagination information,
pagination is performed via the following algorithm with start = 1
.
Core Pagination Algorithm:
Initial guess for pagination position is
start + lpp
(start + cpp
)While the guess is not a valid pagination position, and
guess > start
, decrement guess and repeat.An error is thrown if all possible pagination positions between
start
andstart + lpp
(start + cpp
) would be< start
after decrementing
Retain pagination index
If pagination point was less than
NROW(tt)
(ncol(tt)
), setstart
topos + 1
, and repeat steps (1) - (4).
Validating Pagination Position:
Given an (already adjusted) lpp
or cpp
value, a pagination is invalid if:
The rows/columns on the page would take more than (adjusted)
lpp
lines/cpp
characters to render including:word-wrapping
(vertical only) context repetition
(vertical only) footnote messages and/or section divider lines take up too many lines after rendering rows
(vertical only) row is a label or content (row-group summary) row
(vertical only) row at the pagination point has siblings, and it has less than
min_siblings
preceding or following siblingspagination would occur within a sub-table listed in
nosplitin
Examples
mypgdf <- basic_pagdf(row.names(mtcars))
paginds <- pag_indices_inner(mypgdf, rlpp = 15, min_siblings = 0)
lapply(paginds, function(x) mtcars[x, ])