Releases: strengejacke/sjlabelled
Releases · strengejacke/sjlabelled
sjlabelled 1.0.14
General
- Reduce package dependencies.
Bug fixes
- Fix bug in
var_labels()
, where non-existing columns may lead to wrong labelling.
sjlabelled 1.0.13
General
- Removed defuncted functions.
Changes to functions
copy_labels()
now also copy labels even if columns in subsetted and original data frame do not completely match.- Arguments
include.non.labelled
andinclude.values
inget_labels()
are renamed to shorter versionsnon.labelled
andvalues
.include.non.labelled
andinclude.values
will become softly deprecated. - The
read_*()
-functions get averbose
-argument, to show or hide the progressbar when imported datasets are converted.
Bug fixes
- Due to changes in the broom and lmerTest packages, tidiers did no longer work for
lmerModLmerTest
objects.
sjlabelled 1.0.12
General
get_dv_labels()
andget_term_labels()
now support clmm-objects (package ordinal) and stanmvreg-objects (package rstanarm).read_spss()
gets aenc
-argument for character encoding, which is now supported since haven 1.1.2.get_term_labels()
now returnsNULL
for unsupported models, instead of giving an error.get_dv_labels()
now returns a default string for unsupported models, instead of giving an error.
sjlabelled 1.0.11
General
as_labelled()
now corrects inconsistent types between labels and variable values.
Changes to functions
get_dv_labels()
gets amulti.resp
-argument to return each label of a multivariate response model (only for brmsfit objects).get_label()
now also returns name-attribute for empty labels ifx
was a data.frame.
Bug fixes
write_*()
-functions should now properly set labels for negative values.
sjlabelled 1.0.10
General
- Deprecated
set_note()
andget_note()
, because there is already an R base function for this purpose:comment()
. - Improved performance of functions, at the cost of removing support for the foreign package. sjlabelled now only supports labelled data from package haven.
Changes to functions
get_term_labels()
gets aprefix
-argument to prefix the returned labels of categorical variable either with the related variable name or label.
Bug fixes
- Fix issues with retrieving incorrect labels from
get_term_labels()
for models that used unlabelled data in combination with other contrasts than the default option. get_dv_labels()
no longer returns"NULL"
for multivariate-response-models fitted with brms.