Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
Package: easytable
Type: Package
Title: Create Multi-Format Regression Tables
Version: 2.1.0
Version: 2.1.1
Authors@R: person("Alfredo", "Hernandez Sanchez",
email = "alhdzsz@gmail.com",
role = c("aut", "cre"))
Description: Create publication-ready regression tables in multiple formats
(Word/HTML and LaTeX/PDF) from statistical models. Supports lm and glm
models with options for robust standard errors, marginal effects, and
control variable grouping. Tables can be exported to Word via flextable
or LaTeX for PDF output.
Description: Create publication-ready regression tables in multiple
formats, including 'Word', 'HTML', 'LaTeX', and 'PDF', from
statistical models. Supports lm() and glm() models with options for
robust standard errors, marginal effects, and control variable
grouping. Tables can be exported to 'Word' via 'flextable' or to
'LaTeX' for 'PDF' output.
License: MIT + file LICENSE
Encoding: UTF-8
Roxygen: list(markdown = TRUE)
Expand Down
8 changes: 8 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# easytable 2.1.1

This is the first CRAN submission version of easytable.

Compared with the earlier GitHub and Zenodo 2.1.0 release, this version includes minor bug fixes, documentation updates, and CRAN-requested formatting changes.

---

# easytable 2.1.0

## Minor Updates
Expand Down
4 changes: 2 additions & 2 deletions R/easytab.R
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#' Create publication-ready regression tables
#' Create Multi-Format Regression Tables
#'
#' Takes model objects as arguments and creates formatted tables for
#' Word or LaTeX/PDF output. Supports robust standard errors,
Expand Down Expand Up @@ -155,7 +155,7 @@ easytable <- function(...,
new_row[[model_cols[i]]] <- custom.row[i + 1L]
}
new_row$row_type <- "custom"

transformed <- rbind(transformed, new_row)
existing_stat_terms <- attr(transformed, "stat_terms")
attr(transformed, "stat_terms") <- c(existing_stat_terms, custom.row[1])
Expand Down
20 changes: 8 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Create regression tables that are easy to use and easy to read.

`easytable` is a workhorse table package for `lm` and `glm` models with predictable defaults across Word/HTML and LaTeX/PDF outputs.
`easytable` is a workhorse table package for `lm()` and `glm()` models with predictable defaults across Word/HTML and LaTeX/PDF outputs.

[![License: MIT](https://img.shields.io/badge/license-MIT-yellow.svg)](LICENSE)
[![pkgdown](https://img.shields.io/badge/pkgdown-site-blue)](https://alfredo-hs.github.io/easytable/)
Expand All @@ -23,7 +23,7 @@ Create regression tables that are easy to use and easy to read.
To install `easytable` please run the command below:

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

## Quick Start (Penguins)
Expand Down Expand Up @@ -116,14 +116,10 @@ easytable(m1, m2, robust.se = TRUE, margins = TRUE)

## Supported Model Classes

Current stable scope:
The `easytable` supports the following models:

- `lm`
- `glm`

Planned later:

- `plm` and other model classes
- `lm()`
- `glm()`

## Design Invariants

Expand All @@ -150,15 +146,15 @@ See `DESIGN_PHILOSOPHY.md` for the full contributor policy.
## Citation

```text
Hernandez Sanchez, A. (2026). easytable: Simple and Clean Regression Tables in R. Version 2.1.0. https://doi.org/10.5281/zenodo.18673550
Hernandez Sanchez, A. (2026). easytable: Create Multi-Format Regression Tables. Version 2.1.1. https://doi.org/10.5281/zenodo.18673550
```

```text
@misc{easytable2026,
title = {{e}asytable},
subtitle = {Simple and Clean Regression Tables in {R}},
subtitle = {Create Multi-Format Regression Tables},
author = {Hernandez Sanchez, Alfredo},
note = {Version 2.1.0},
note = {Version 2.1.1},
year = {2026},
month = {02},
date = {2026-02-17},
Expand Down
2 changes: 1 addition & 1 deletion docs/404.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion docs/AI_NOTES.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/DESIGN_PHILOSOPHY.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/LICENSE-text.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions docs/authors.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 4 additions & 5 deletions docs/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 11 additions & 5 deletions docs/news/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions docs/pkgdown.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
pandoc: '3.4'
pandoc: 3.6.3
pkgdown: 2.0.9
pkgdown_sha: ~
articles:
developer-roadmap: developer-roadmap.html
easytable-intro: easytable-intro.html
penguins-tutorial: penguins-tutorial.html
last_built: 2026-02-17T14:35Z
last_built: 2026-05-04T10:08Z
urls:
reference: https://alfredo-hs.github.io/easytable/reference
article: https://alfredo-hs.github.io/easytable/articles
Expand Down
8 changes: 6 additions & 2 deletions docs/reference/abbreviate_var_name.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/reference/check_format_dependencies.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/reference/check_margins_dependencies.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/reference/check_robust_dependencies.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions docs/reference/collapse_control_vars.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading