knitreg {texreg}R Documentation

Flexibly choose the right table output format for use with knitr

Description

Flexibly choose the right table output format for use with knitr.

Usage

knitreg(...)

Arguments

...

Arguments to be handed over to the texreg, htmlreg, screenreg, or matrixreg function. See the respective help page for details.

Details

This function automatically selects the right function (texreg, screenreg, htmlreg, or matrixreg) with the right set of arguments for use with the knitr package, for example in RStudio. The advantage of using this function with knitr is that the user does not need to replace the texreg, htmlreg etc. function call in the document when a different output format is selected.

knitreg works with...

If Markdown and HTML rendering are selected, htmlreg arguments doctype = FALSE and star.symbol = "*" are set to enable compatibility with Markdown. With R HTML documents (but not Markdown) or presentations (.Rpres extension), only doctype = FALSE is set.

For PDF/LaTeX documents, the texreg argument use.packages = FALSE is set to suppress any package loading instructions in the preamble. The user must load any packages manually in the preamble of the document.

The knitr and rmarkdown packages must be installed for this function to work.

Value

A table as a character string in the respective output format.

Author(s)

Philip Leifeld, with input from David Hugh-Jones

See Also

texreg-package extract

Other texreg: htmlreg(), huxtablereg(), matrixreg(), plotreg(), screenreg(), texreg, wordreg()

Examples

require("nlme")
model.1 <- lme(distance ~ age, data = Orthodont, random = ~ 1)
model.2 <- lme(distance ~ age + Sex, data = Orthodont, random = ~ 1)
knitreg(list(model.1, model.2), center = FALSE, caption = "", table = FALSE)


[Package texreg version 1.39.3 Index]