Skip to content

datawizard 0.10.0

Compare
Choose a tag to compare
@etiennebacher etiennebacher released this 26 Mar 14:28
· 17 commits to main since this release
bf51817

BREAKING CHANGES

  • The following arguments were deprecated in 0.5.0 and are now removed:

    • in data_to_wide(): colnames_from, rows_from, sep
    • in data_to_long(): colnames_to
    • in data_partition(): training_proportion

NEW FUNCTIONS

  • data_summary(), to compute summary statistics of (grouped) data frames.

  • data_replicate(), to expand a data frame by replicating rows based on another
    variable that contains the counts of replications per row.

CHANGES

  • data_modify() gets three new arguments, .at, .if and .modify, to modify
    variables at specific positions or based on logical conditions.

  • data_tabulate() was revised and gets several new arguments: a weights
    argument, to compute weighted frequency tables. include_na allows to include
    or omit missing values from the table. Furthermore, a by argument was added,
    to compute crosstables (#479, #481).