parameters 0.19.0
Breaking
-
Arguments that calculate effectsize in
model_parameters()
forhtest
,
Anova objects and objects of classBFBayesFactor
were revised. Instead of
single arguments for the different effectsizes, there is now one argument,
effectsize_type
. The reason behind this change is that meanwhile many
new type of effectsizes have been added to the effectsize package, and
the generic argument allows to make use of those effect sizes. -
The attribute name in PCA / EFA has been changed from
data_set
todataset
. -
The minimum needed R version has been bumped to
3.6
. -
Removed deprecated argument
parameters
frommodel_parameters()
. -
standard_error_robust()
,ci_robust()
andp_value_robust()
are now
deprecated and superseded by thevcov
andvcov_args
arguments in the
related methodsstandard_error()
,ci()
andp_value()
, respectively. -
Following functions were moved from package parameters to performance:
check_sphericity_bartlett()
,check_kmo()
,check_factorstructure()
and
check_clusterstructure()
.
Changes to functions
-
Added
sparse
option toprincipal_components()
for sparse PCA. -
The
pretty_names
argument from theprint()
method can now also be
"labels"
, which will then use variable and value labels (if data is
labelled) as pretty names. If no labels were found, default pretty names
are used. -
bootstrap_model()
for models of classglmmTMB
andmerMod
gains a
cluster
argument to specify optional clusters when theparallel
option is set to"snow"
. -
P-value adjustment (argument
p_adjust
inmodel_parameters()
) is now
performed after potential parameters were removed (usingkeep
ordrop
),
so adjusted p-values is only applied to the parameters of interest. -
Robust standard errors are now supported for
fixest
models with thevcov
argument. -
print()
formodel_parameters()
gains afooter
argument, which can be
used to suppress the footer in the output. Further more, iffooter = ""
orfooter = FALSE
inprint_md()
, no footer is printed. -
simulate_model()
andsimulate_parameters()
now pass...
to
insight::get_varcov()
, to allow simulated draws to be based on
heteroscedasticity consistent variance covariance matrices. -
The
print()
method forcompare_parameters()
was improved for models with
multiple components (e.g., mixed models with fixed and random effects, or
models with count- and zero-inflation parts). For these models,
compare_parameters(effects = "all", component = "all")
prints more nicely.
Bug fixes
- Fix erroneous warning for p-value adjustments when the differences between
original and adjusted p-values were very small.