BREAKING CHANGES
- The following deprecated arguments have been removed (#603):
drop_na
indata_match()
safe
,pattern
, andverbose
indata_rename()
CHANGES
-
data_read()
anddata_write()
now support the.parquet
file format, via
the nanoparquet package (#625). -
data_tabulate()
gets adisplay()
method (#627). -
data_tabulate()
gets anas.table()
method to coerce the frequency or
contingency table into a (list of)table()
object(s). This can be useful for
further statistical analysis, e.g. in combination withchisq.test()
(#629). -
The
print()
method fordata_tabulate()
now appears in the documentation,
making thebig_mark
argument visible (#627).
BUG FIXES
-
Fixed an issue when printing cross tables using
data_tabulate(by = ...)
,
which was caused by the recent changes ininsight::export_table()
. -
Fixed another issue when printing cross tables using
data_tabulate(by = ...)
,
when more than one variable was selected forselect
(#630). -
Fixed typo in the documentation of
data_match()
.