/textools

Create nice looking LaTeX tables

Primary LanguageRGNU General Public License v3.0GPL-3.0

Build Status

textools

textools create nice looking LaTeX tables.

Installation

If you only want to use the packages:

# install.packages("devtools")
devtools::install_github("lbau7/textools")

If you also want to build the vignettes (attention: this will install all suggested packages):

# install.packages("devtools")
devtools::install_github("lbau7/textools", build_vignettes = TRUE)

Then you can check out the vignettes:

browseVignettes("textools")

Usage

The main function of textools is texmod() which creates LaTeX tables for the regression output of various models.

library(textools)

iris.lm <- lm(Sepal.Length ~ Sepal.Width + Petal.Width + Species, data = iris)
texmod(iris.lm)

Check out the vignettes for some examples.