From e882fda905150649aa887c72731144330ca297b5 Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun 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 Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/tests/keys/ed25519.pub
AgeCommit message (Expand)Author
2022-05-18tests: Ensure test OpenPGP keys never expire....All these keys had expiration dates. 'tests/keys/ed25519.pub' expired on 2022-04-24. Fixes <https://issues.guix.gnu.org/55506>. * tests/keys/ed25519.pub, tests/keys/ed25519-2.pub, tests/keys/ed25519-3.pub: Remove expiration date. Ludovic Courtès
2021-12-22tests: Move keys into ./tests/keys/ and add a third ed25519 key....The third key will be used in an upcoming commit. Rename public keys to .pub. * guix/tests/gnupg.scm (%ed25519-3-public-key-file): New variable. (%ed25519-3-secret-key-file): New variable. (%ed25519-2-public-key-file): Renamed from %ed25519bis-public-key-file. (%ed25519-2-secret-key-file): Renamed from %ed25519bis-secret-key-file. * tests/keys/ed25519-3.key: New file. * tests/keys/ed25519-3.sec: New file. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org> Attila Lendvai