View source: R/tbl-format-footer.R
tbl_format_footer | R Documentation |
For easier customization, the formatting of a tibble is split
into three components: header, body, and footer.
The tbl_format_footer()
method is responsible for formatting the footer
of a tibble.
Override or extend this method if you need to change the appearance of the footer. The default implementation adds information about rows and columns that are not shown in the body.
tbl_format_footer(x, setup, ...)
x |
A tibble-like object. |
setup |
A setup object returned from |
... |
These dots are for future extensions and must be empty. |
A character vector.
setup <- tbl_format_setup(palmerpenguins::penguins)
tbl_format_footer(palmerpenguins::penguins, setup)
# Shortcut for debugging
tbl_format_footer(setup)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.