Skip to content

broom.helpers 1.16.0

Compare
Choose a tag to compare
@larmarange larmarange released this 20 Aug 08:49

New features

  • new argument model_matrix_attr in tidy_and_attach() and tidy_plus_plus()
    to attach model frame and model matrix to the model as attributes for saving
    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)
  • internal code now uses the native R pipe (|>), requiring therefore R >= 4.2
    (#262)

Deprecated support

  • biglmm::bigglm() not supported anymore as biglmm has been removed from
    CRAN

Deprecated functions

  • tidy_marginal_means() is now deprecated, following deprecation of
    marginaleffects::marginal_means(). Use instead tidy_marginal_predictions()
    with the option newdata = "marginalmeans".
  • tidy_margins() is now indicated as superseded and may be deprecated if
    margins is removed from CRAN. tidy_avg_slopes() could be used as an
    alternative. (#252)

Fixes

  • tidy_multgee() has been fixed to properly identify the different y.levels
    (#260 @jackmwolf)
  • tidy_marginal_predictions() has been updated to avoid the use of the
    deprecated function marginaleffects::datagridcf() (#256)