saudiwin / ordbetareg_pack

Repository for R package ordbetareg, used to fit continuous data with lower and upper bounds.
Other
17 stars 3 forks source link

modelsummary 1.4.0 #13

Closed vincentarelbundock closed 1 year ago

vincentarelbundock commented 1 year ago

kableExtra does not appear to be actively maintained and it causes some problems on pkgdown websites and for installation on some platforms. In version 1.4.0, modelsummary will no longer depend on kableExtra. Instead it will give the user a choice to install any of the supported table-making package, and offer a function to set a persistent default.

Call setting:

modelsummary(model, output = "gt")

Persistent setting stays only for the current session:

options(modelsummary_factory_default = "gt")

Persistent setting stays across sessions:

config_modelsummary(factory_default = "gt")

Developers of packages that use modelsummary in vignettes need to add a table-making package to Suggests.

saudiwin commented 1 year ago

Sure, I think it's time to move on to gt. Thanks for doing the code changes!