Skip to content

Commit

Permalink
Merge branch 'main' into issue249
Browse files Browse the repository at this point in the history
  • Loading branch information
larmarange authored Jul 27, 2024
2 parents 111b347 + 243552a commit 8d1a760
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
some execution time (#254)
- `tidy_add_n()` now returns `n_ind` the number of individuals, in addition to
the number of observations (#251)
- by default, `tidy_parameters()` calls now `parameters::model_parameters()`
with `pretty_names = FALSE` for saving execution time (#259)

**Deprecated support**

Expand Down
1 change: 1 addition & 0 deletions R/custom_tidiers.R
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ tidy_parameters <- function(x, conf.int = TRUE, conf.level = .95, ...) {
if (!conf.int) conf.level <- NULL
args$ci <- conf.level
args$model <- x
if (is.null(args$pretty_names)) args$pretty_names <- FALSE

if (
inherits(x, "betareg") &&
Expand Down

0 comments on commit 8d1a760

Please sign in to comment.