Skip to content

Commit

Permalink
cran submission 0.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
IndrajeetPatil committed Oct 22, 2022
1 parent 664d5dd commit 0b0d117
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 16 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Type: Package
Package: datawizard
Title: Easy Data Wrangling and Statistical Transformations
Version: 0.6.2.5
Version: 0.6.3
Authors@R: c(
person("Indrajeet", "Patil", , "[email protected]", role = c("aut", "cre"),
comment = c(ORCID = "0000-0003-1995-6531", Twitter = "@patilindrajeets")),
Expand Down
26 changes: 14 additions & 12 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,28 +1,30 @@
# datawizard (development version)
# datawizard 0.6.3

MAJOR CHANGES

* There is a new publication about the `{datawizard}` package:
Patil et al. (2022) <doi:10.21105/joss.04684>.

* `data_to_long()` and `data_to_wide()` have had significant performance improvements,
sometimes as high as a ten-fold speedup.
* There is a new publication about the `{datawizard}` package:
<https://joss.theoj.org/papers/10.21105/joss.04684>

* Fixes failing tests due to changes in `R-devel`.

* `data_to_long()` and `data_to_wide()` have had significant performance
improvements, sometimes as high as a ten-fold speedup.

MINOR CHANGES

* When column names are misspelled, most functions now suggest which
existing columns possibly could be meant.
* When column names are misspelled, most functions now suggest which existing
columns possibly could be meant.

* Miscellaneous performance gains.

* `convert_to_na()` now requires argument `na` to be of class 'Date' to
convert specific dates to `NA`. For example, `convert_to_na(x, na = "2022-10-17")` must be changed to `convert_to_na(x, na = as.Date("2022-10-17"))`.
* `convert_to_na()` now requires argument `na` to be of class 'Date' to convert
specific dates to `NA`. For example, `convert_to_na(x, na = "2022-10-17")`
must be changed to `convert_to_na(x, na = as.Date("2022-10-17"))`.

BUG FIXES

* `data_to_long()` and `data_to_wide()` now correctly keep the `date` format.


# datawizard 0.6.2

BREAKING CHANGES
Expand Down
2 changes: 1 addition & 1 deletion cran-comments.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

0 errors | 0 warnings | 0 note

* Maintenance release.
* Fixes failing tests.

## revdepcheck results

Expand Down
4 changes: 2 additions & 2 deletions vignettes/standardize_data.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ if (!all(sapply(pkgs, requireNamespace, quietly = TRUE))) {

This vignette can be referred to by citing the following:

Patil et al., (2022). datawizard: An R Package for Easy Data Preparation and Statistical Transformations. *Journal of Open Source Software*, *7*(78), 4684, https://doi.org/10.21105/joss.04684
> Patil et al., (2022). datawizard: An R Package for Easy Data Preparation and Statistical Transformations. *Journal of Open Source Software*, *7*(78), 4684, https://doi.org/10.21105/joss.04684
# Introduction

Expand Down Expand Up @@ -447,6 +447,6 @@ importance of open data, open analysis/scripts, and preregistration.

- `datawizard::demean()`: <https://easystats.github.io/datawizard/reference/demean.html>
- `standardize_parameters(method = "pseudo")` for mixed-effects models
<https://easystats.github.io/parameters/articles/model_parameters_standardized.html>
<https://easystats.github.io/parameters/articles/standardize_parameters_effsize.html>

# References

0 comments on commit 0b0d117

Please sign in to comment.