Skip to contents

easytable helps you create publication-ready tables with clear defaults and minimal code. Its Design Philosophy is simple:

  1. Easy to use.
  2. Easy to read.

Basic Function and Installation

To install easytable please run the command below:

install.packages("easytable", repos = c("https://alfredo-hs.r-universe.dev/easytable", "https://cloud.r-project.org"))

After installation, everything is easy.

library(easytable)

model <- lm(mpg ~ wt, data = mtcars)

easytable(model)

For more information about package functions, see the Penguins Tutorial.

What You Get

  • One function for routine workflows: easytable()
  • Word/HTML and LaTeX output paths
  • Control-variable indicators (STATA-like)
  • Optional export to .docx and .csv

On what can I use it?

As a workhorse package, easytable currently supports the bread-and-butter classes in R:

  • lm
  • glm

Other model classes (including plm) will be added in later releases.

For Contributors

Please feel free to contribute by forking the GitHub repository and trying the package.