From c91f08e2696d0e0f08698e2416ef02c32c9be66d Mon Sep 17 00:00:00 2001 From: Alex Zwanenburg Date: Thu, 26 Feb 2026 20:59:51 +0100 Subject: [PATCH 1/3] Added citation. --- R/DESCRIPTION | 2 +- R/cran-comments.md | 19 ++----------------- R/inst/CITATION | 11 +++++++++++ 3 files changed, 14 insertions(+), 18 deletions(-) create mode 100644 R/inst/CITATION diff --git a/R/DESCRIPTION b/R/DESCRIPTION index ec3008e..b3519dc 100644 --- a/R/DESCRIPTION +++ b/R/DESCRIPTION @@ -1,6 +1,6 @@ Package: power.transform Title: Location and Scale Invariant Power Transformations -Version: 1.0.3 +Version: 1.0.4 Authors@R: c( person("Alex", "Zwanenburg", diff --git a/R/cran-comments.md b/R/cran-comments.md index 2598322..863c28a 100644 --- a/R/cran-comments.md +++ b/R/cran-comments.md @@ -1,27 +1,12 @@ -This is a new release. R CMD was run locally (windows), and using GitHub Actions +R CMD was run locally (windows), and using GitHub Actions on Ubuntu, Mac-OS and Windows for R-latest and R-devel. -Version 1.0.3 prevents the issue leading to the error on -r-devel-linux-x86_64-fedora-gcc for 1.0.2, which was caused by an error in the -data.table package that has been fixed in data.table 1.18.0. - Additionally, R CMD was run with `_R_CHECK_DEPENDS_ONLY_ = True` # R CMD check results -0 errors | 0 warnings | 2 notes - -❯ checking CRAN incoming feasibility ... [12s] NOTE - Maintainer: 'Alex Zwanenburg ' - - New submission - - Package was archived on CRAN - - CRAN repository db overrides: - X-CRAN-Comment: Archived on 2026-01-15 as issues were not addressed - in time. +0 errors | 0 warnings | 1 notes ❯ checking for future file timestamps ... NOTE unable to verify current time diff --git a/R/inst/CITATION b/R/inst/CITATION new file mode 100644 index 0000000..db59333 --- /dev/null +++ b/R/inst/CITATION @@ -0,0 +1,11 @@ +bibentry( + bibtype = "Article", + title = "Location and scale-invariant power transformations for transforming data to normality", + author = c(person("Alex", "Zwanenburg"), + person("Steffen", "Löck")), + journal = "Machine Learning", + year = 2026, + volume = 115, + number = 3, + doi = "10.1007/s10994-026-06994-3" +) From d28c61ba782526503703ab132fc9a8a688a39bcf Mon Sep 17 00:00:00 2001 From: Alex Zwanenburg Date: Fri, 27 Feb 2026 09:34:02 +0100 Subject: [PATCH 2/3] Added citation. --- R/NEWS.md | 8 ++++++++ README.md | 7 ++++++- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/R/NEWS.md b/R/NEWS.md index 01ff76c..95f16fd 100644 --- a/R/NEWS.md +++ b/R/NEWS.md @@ -1,3 +1,11 @@ +# Version 1.0.4 + +## Changes + +- Updated citation, since the manuscript was published in *Machine Learning*: + Zwanenburg, A. and Löck, S. (2026) *Location and scale-invariant power transformations for transforming data to normality*, + Machine Learning, 115(3). Available at: https://doi.org/10.1007/s10994-026-06994-3. + # Version 1.0.3 ## Changes diff --git a/README.md b/README.md index 6438e21..6cb7b92 100644 --- a/README.md +++ b/README.md @@ -22,4 +22,9 @@ Stable versions of `power.transformation` can be installed from CRAN. ## Citation -A publication on location- and scale-invariant power transformations is forthcoming. +If you use the package, feel free to cite our [work](https://doi.org/10.1007/s10994-026-06994-3): + +``` +Zwanenburg, A. and Löck, S. (2026) Location and scale-invariant power transformations for transforming data to normality, +Machine Learning, 115(3). Available at: https://doi.org/10.1007/s10994-026-06994-3. +``` From 25c31464995f60eff50030ba3070b1178ae05f5a Mon Sep 17 00:00:00 2001 From: Alex Zwanenburg Date: Mon, 2 Mar 2026 08:28:52 +0100 Subject: [PATCH 3/3] Fix citation to not contain non-ASCII characters. --- R/inst/CITATION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/inst/CITATION b/R/inst/CITATION index db59333..5e21a07 100644 --- a/R/inst/CITATION +++ b/R/inst/CITATION @@ -2,7 +2,7 @@ bibentry( bibtype = "Article", title = "Location and scale-invariant power transformations for transforming data to normality", author = c(person("Alex", "Zwanenburg"), - person("Steffen", "Löck")), + person("Steffen", 'L{\\"o}ck')), journal = "Machine Learning", year = 2026, volume = 115,