BREAKING CHANGES
-
data_rename()
now errors when thereplacement
argument containsNA
values
or empty strings (#539). -
Removed deprecated functions
get_columns()
,data_find()
,format_text()
(#546). -
Removed deprecated arguments
group
andna.rm
in multiple functions. Useby
andremove_na
instead (#546). -
The default value for the argument
dummy_factors
into_numeric()
has
changed fromTRUE
toFALSE
(#544).
CHANGES
-
The
pattern
argument indata_rename()
can also be a named vector. In this
case, names are used as values for thereplacement
argument (i.e.pattern
can be a character vector using<new name> = "<old name>"
). -
categorize()
gains a newbreaks
argument, to decide whether breaks are
inclusive or exclusive (#548). -
The
labels
argument incategorize()
gets two new options,"range"
and
"observed"
, to use the range of categorized values as labels (i.e. factor
levels) (#548). -
Minor additions to
reshape_ci()
to work with forthcoming changes in the
{bayestestR}
package.