parameters 0.20.0
Breaking
-
The deprecated argument
df_method
inmodel_parameters()
is now defunct
and throws an error when used. -
The deprecated functions
ci_robust()
,p_robust()
andstandard_error_robust
have been removed. These were superseded by thevcov
argument inci()
,
p_value()
, andstandard_error()
, respectively. -
The
style
argument incompare_parameters()
was renamed intoselect
.
New functions
-
p_function()
, to print and plot p-values and compatibility (confidence)
intervals for statistical models, at different levels. This allows to see
which estimates are most compatible with the model at various compatibility
levels. -
p_calibrate()
, to compute calibrated p-values.
Changes
-
model_parameters()
andcompare_parameters()
now use the unicode character
for the multiplication-sign as interaction mark (i.e.\u00d7
). Use
options(parameters_interaction = <value>)
or the argumentinteraction_mark
to use a different character as interaction mark. -
The
select
argument incompare_parameters()
, which is used to control the
table column elements, now supports an experimental glue-like syntax.
See this vignette Printing Model Parameters. Furthermore, theselect
argument can also be used in theprint()
method formodel_parameters()
. -
print_html()
gets afont_size
andline_padding
argument to tweak the
appearance of HTML tables. Furthermore, argumentsselect
andcolumn_labels
are new, to customize the column layout of tables. See examples in?display
. -
Consolidation of vignettes on standardization of model parameters.
-
Minor speed improvements.
Bug fix
-
model_parameters().BFBayesFactor
no longer drops theBF
column if the
Bayes factor isNA
. -
The
print()
anddisplay()
methods formodel_parameters()
from Bayesian
models now pass the...
toinsight::format_table()
, allowing extra
arguments to be recognized. -
Fixed footer message regarding the approximation method for CU and p-values
for mixed models. -
Fixed issues in the
print()
method forcompare_parameters()
with mixed
models, when some models contained within-between components (see
wb_component
) and others did not.