Skip to content
Open
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
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: texreg
Version: 1.39.4.3
Date: 2025-01-03
Version: 1.39.4.4
Date: 2025-01-14
Title: Conversion of R Regression Output to LaTeX or HTML Tables
Authors@R: c(person(given = "Philip", family = "Leifeld", email = "philip.leifeld@manchester.ac.uk", role = c("aut", "cre")),
person(given = "Claudia", family = "Zucca", email = "c.zucca@jads.nl", role = "ctb"))
Expand Down
2 changes: 1 addition & 1 deletion R/extract.R
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,7 @@ extract.broom <- function(model, ...) {
silent = TRUE)
gof <- try({
# extract
out <- broom::glance(model)[1, ]
out <- broom::glance(model)[1, , drop=FALSE]
gof.decimal <- sapply(out, function(k) class(k)[1]) # type inference
gof.decimal <- ifelse(gof.decimal %in% c("integer", "logical"), FALSE, TRUE)
out <- data.frame("gof.names" = colnames(out),
Expand Down
Loading