From 4dbf894db50bd3d3b7d41b4b23864232665a63bb Mon Sep 17 00:00:00 2001 From: Daniel Date: Mon, 23 Dec 2024 11:48:50 +0100 Subject: [PATCH] news --- NEWS.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/NEWS.md b/NEWS.md index 35e549ffa..f332643fb 100644 --- a/NEWS.md +++ b/NEWS.md @@ -4,18 +4,23 @@ BREAKING CHANGES AND DEPRECATIONS * *datawizard* now requires R >= 4.0 (#515). -* Argument `drop_na` in `data_match()` is deprecated now. Please use +* Argument `drop_na` in `data_match()` is deprecated now. Please use `remove_na` instead. * In `data_rename()` (#567): - argument `pattern` is deprecated. Use `select` instead. - - argument `safe` is deprecated. The function now errors when `select` + - argument `safe` is deprecated. The function now errors when `select` contains unknown column names. - when `replacement` is `NULL`, an error is now thrown (previously, column indices were used as new names). - if `select` (previously `pattern`) is a named vector, then all elements must be named, e.g. `c(length = "Sepal.Length", "Sepal.Width")` errors. +* `print()` methods for `data_tabulate()` with multiple sub-tables (i.e. when + length of `by` was > 1) were revised. Now, an integrated table instead of + multiple tables is returned. Furthermore, `print_html()` did not work, which + was also fixed now. + CHANGES * The `select` argument, which is available in different functions to select