parameters 0.27.0
Breaking Changes
-
The
standardizeargument infactor_analysis()now defaults toFALSE. -
The
rotationargument infactor_analysis()now defaults to"oblimin",
because the former default of"none"rarely makes sense in the context of
factor analysis. If you want to use no rotation, please setrotation = "none". -
The
corargument inn_factors()was renamed intocorrelation_matrix. In
factor_analysis(), thecorargument was completely removed to avoid naming
collision with thecorargument ofpsych::fa(), which now users can pass
thecorargument topsych::fa()when usingfactor_analysis().
Changes
-
factor_analysis()gets a.matrixmethod, including argumentsn_obsand
n_matrix, to compute factor analysis for a correlation matrix or covariance
matrix. -
New function
factor_scores()to extract factor scores from EFA (psych::fa()
orfactor_analysis()). -
Added and/or improved print-methods for all functions around PCA, FA and Omega.
-
Improved efficiency in
model_parameters()for models from packages brms
and rstanarm. -
p_adjustformodel_parameters()gets a new options,"sup-t", to calculate
simultaneous confidence intervals.
Bug fixes
-
bootstrap_model()did not work for intercept-only models. This has been fixed. -
Fixed issue with printing labels as pretty names for models from package
pscl, i.e.print(model_parameters(model), pretty_names = "labels")now
works as expected.