s3alfisc / fwildclusterboot

Fast Wild Cluster Bootstrap Inference for Regression Models / OLS in R. Additionally, R port to WildBootTests.jl via the JuliaConnectoR.
https://s3alfisc.github.io/fwildclusterboot/
GNU General Public License v3.0
22 stars 4 forks source link

modelsummary 1.4.0 #104

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.

s3alfisc commented 1 year ago

Hi @vincentarelbundock, thanks so much for this PR! I will merge it despite test failures due to WildBootTests.jl updates, which I will have to deal with at a later point in time.