1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/html_paged.R
\name{paged_table}
\alias{paged_table}
\title{Create a table in HTML with support for paging rows and columns}
\usage{
paged_table(x, options = NULL)
}
\arguments{
\item{x}{a data frame to be rendered as a paged table.}
\item{options}{options for printing the paged table. See details for specifics.}
}
\description{
Create a table in HTML with support for paging rows and columns
}
\details{
Below are the recognized table pagination options.
\tabular{rll}{
Option \tab Description \tab Default \cr
\code{max.print} \tab The number of rows to print. \tab 1000 \cr
\code{sql.max.print} \tab The number of rows to print from a SQL data table. \tab 1000 \cr
\code{rows.print} \tab The number of rows to display. \tab 10 \cr
\code{cols.print} \tab The number of columns to display. \tab 10 \cr
\code{cols.min.print} \tab The minimum number of columns to display. \tab - \cr
\code{pages.print} \tab The number of pages to display under page navigation. \tab - \cr
\code{paged.print} \tab When set to FALSE turns off paged tables. \tab TRUE \cr
\code{rownames.print} \tab When set to FALSE turns off row names. \tab TRUE
}
\bold{Note:} There is a hard cap of 10,000 rows to ensure that pandoc will not
fail when rendering the document.
}
|