diff options
author | Lars-Dominik Braun <ldb@leibniz-psychology.org> | 2023-04-17 11:40:28 +0200 |
---|---|---|
committer | Lars-Dominik Braun <ldb@leibniz-psychology.org> | 2023-04-17 11:55:30 +0200 |
commit | 89acc4d5c645cf8bdb8f35c490b50f168931bd12 (patch) | |
tree | da6a7b8ffc19f469768defa9cbacd9b68cb502b3 /gnu/packages/patches | |
parent | a117510a8c9246f8e09577780ccaf3955f98d7ad (diff) | |
download | guix-89acc4d5c645cf8bdb8f35c490b50f168931bd12.tar.gz |
gnu: r-mixedpower: Update to b2b87068.
* gnu/packages/statistics.scm (r-mixedpower): Update to commit b2b87068546327d8f592d141e5482e0478c1b2ee, remove patch. * gnu/packages/patches/r-mixedpower-r2power.patch: Remove file. * gnu/local.mk: Unregister it.
Diffstat (limited to 'gnu/packages/patches')
-rw-r--r-- | gnu/packages/patches/r-mixedpower-r2power.patch | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/gnu/packages/patches/r-mixedpower-r2power.patch b/gnu/packages/patches/r-mixedpower-r2power.patch deleted file mode 100644 index a3307ca7b5..0000000000 --- a/gnu/packages/patches/r-mixedpower-r2power.patch +++ /dev/null @@ -1,26 +0,0 @@ -From e882fda905150649aa887c72731144330ca297b5 Mon Sep 17 00:00:00 2001 -From: Lars-Dominik Braun <lars@6xq.net> -Date: Fri, 28 Oct 2022 09:18:11 +0200 -Subject: [PATCH] Fix R2power with R>=4.2 - -The previous commit missed this if statement. ---- - R/meta_functions.R | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/R/meta_functions.R b/R/meta_functions.R -index a65f0c1..fb3feba 100644 ---- a/R/meta_functions.R -+++ b/R/meta_functions.R -@@ -172,7 +172,7 @@ R2power <- function(model, data, fixed_effects, simvar, - } # end if databased - - # 2. SESOI -- suppressWarnings(if (SESOI != F){ # supress warning generated by if statement if SESOI =! F -+ suppressWarnings(if (!is.logical(SESOI)){ - - # change beta coeficients to SESOI values - model@beta <- SESOI --- -2.37.4 - |