The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.
After preparing a table or figure in R, users can easily prepare
their display for rendering with a call to
as_docorator
:
library(docorator)
as_docorator(
mytbl,
display_name = "mytbl"
)
This will by default save a docorator object in the form of a .RDS
file in the current working directory. Users can optionally pass a
different directory to save the file and subsequent renders of the
object via the display_loc
argument.
To render this display, the as_docorator
call is paired
with a render function, for example render_pdf
.
library(docorator)
as_docorator(
mytbl,
display_name = "mytbl"
) |>
render_pdf()
Additional customization options can be found in the “Display Sizing” and “Headers and Footers” vignettes.
More customization options will be offered in future releases. If you have a need to customize something that is not currently offered, please file an issue.
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.