guix_mirror_bot pushed a commit to branch r-team
in repository guix.

commit 35e3d00de67ca9056817b833df8fe020cb2f1e7c
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Mon Feb 16 16:49:58 2026 +0100

    gnu: r-reghelper: Move to (gnu packages cran).
    
    * gnu/packages/statistics.scm (r-reghelper): Move from here...
    * gnu/packages/cran.scm (r-reghelper): ...to here.
    
    Change-Id: Id4aa8573a6ff5422b0a245cfdd3953027c9fbe8c
---
 gnu/packages/cran.scm       | 23 +++++++++++++++++++++++
 gnu/packages/statistics.scm | 23 -----------------------
 2 files changed, 23 insertions(+), 23 deletions(-)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index adb211974e..75d47384fe 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -6839,6 +6839,29 @@ ldap, and also supports cookies, redirects, 
authentication, etc.")
 disk (or a connection).")
     (license license:gpl2+)))
 
+(define-public r-reghelper
+  (package
+    (name "r-reghelper")
+    (version "1.1.2")
+    (source (origin
+              (method url-fetch)
+              (uri (cran-uri "reghelper" version))
+              (sha256
+               (base32
+                "1vd8kd719kyjp65zym6zx3vax1q2kbhpl6la71d5aa59s54ylri3"))))
+    (properties `((upstream-name . "reghelper")))
+    (build-system r-build-system)
+    (propagated-inputs (list r-ggplot2 r-lme4 r-mass r-nlme r-rlang))
+    (native-inputs (list r-testthat))
+    (home-page "https://github.com/jeff-hughes/reghelper";)
+    (synopsis "Helper functions for regression analysis")
+    (description
+     "This package provides a set of functions used to automate commonly used
+methods in regression analysis.  This includes plotting interactions, and
+calculating simple slopes, standardized coefficients, regions of
+significance (Johnson & Neyman, 1936; cf.  Spiller et al., 2012), etc.")
+    (license license:gpl3)))
+
 (define-public r-reshape2
   (package
     (name "r-reshape2")
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index 01e2649cfd..a3d8951ac7 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -3211,29 +3211,6 @@ are available as well as methods for plotting the 
results.")
 generating and manipulating colors in R.")
       (license license:gpl3))))
 
-(define-public r-reghelper
-  (package
-    (name "r-reghelper")
-    (version "1.1.2")
-    (source (origin
-              (method url-fetch)
-              (uri (cran-uri "reghelper" version))
-              (sha256
-               (base32
-                "1vd8kd719kyjp65zym6zx3vax1q2kbhpl6la71d5aa59s54ylri3"))))
-    (properties `((upstream-name . "reghelper")))
-    (build-system r-build-system)
-    (propagated-inputs (list r-ggplot2 r-lme4 r-mass r-nlme r-rlang))
-    (native-inputs (list r-testthat))
-    (home-page "https://github.com/jeff-hughes/reghelper";)
-    (synopsis "Helper Functions for Regression Analysis")
-    (description
-     "This package provides a set of functions used to automate commonly used 
methods
-in regression analysis.  This includes plotting interactions, and calculating
-simple slopes, standardized coefficients, regions of significance (Johnson &
-Neyman, 1936; cf.  Spiller et al., 2012), etc.")
-    (license license:gpl3)))
-
 (define-public r-vpc
   (package
     (name "r-vpc")

Reply via email to