From f240ccf9f65e0268a49f61226fa1778e1d2348a8 Mon Sep 17 00:00:00 2001 From: olivroy <52606734+olivroy@users.noreply.github.com> Date: Thu, 27 Jun 2024 13:47:08 -0400 Subject: [PATCH] Update NEWS.md --- NEWS.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/NEWS.md b/NEWS.md index a6042b5..79a1061 100644 --- a/NEWS.md +++ b/NEWS.md @@ -6,10 +6,10 @@ These are all minor breaking changes resulting from enhancements and are not exp * When using `row_to_names()`, when all input values in `row_number` for a column are `NA`, `row_to_names()` creates a column name of `"NA"`, a character, rather than `NA`. If code previously used relied on a column name of `NA`, it will now error. To fix this, rely on a column name of `"NA"`. -## New features - * `tabyl()` now defaults to displaying the label attribute for the column name (@olivroy, #394). +## New features + * A new function `paste_skip_na()` pastes without including NA values (#537). * `row_to_names()` now accepts multiple rows as input, and merges them using a new `sep` argument (#536). The default is `sep = "_"`. When handling multiple `NA` values, `row_to_names()` ignores them and only merges non-NA values for column names. When all values are `NA`, `row_to_names()` creates a column name of `"NA"`, a character, rather than `NA`.