quick-output: Quickly print objects to a PDF, HTML, Word or Excel document.
Description
These functions use huxtable to print objects to an output document. They are useful
as one-liners for data reporting.
Usage
quick_pdf(..., file = confirm("huxtable-output.pdf"), borders = 0.4,
open = interactive())
quick_html(..., file = confirm("huxtable-output.html"), borders = 0.4,
open = interactive())
quick_docx(..., file = confirm("huxtable-output.docx"), borders = 0.4,
open = interactive())
quick_xlsx(..., file = confirm("huxtable-output.xlsx"), borders = 0.4,
open = interactive())
Arguments
...
One or more huxtables or R objects with an as_huxtable method.
file
File path for the output.
borders
Border width for members of ... that are not huxtables.
open
Logical. Automatically open the resulting file?
Value
Invisible NULL.
Details
Objects in ... will be converted to huxtables, with borders added.
If ‘file’ is not specified, the command will fail in non-interactive sessions. In
interactive sessions, the default file path is "huxtable-output.xxx" in the working directory;
if this already exists, you will be asked to confirm manually before proceeding.