diff options
| author | Ricardo Wurmus <rekado@elephly.net> | 2026-02-16 16:49:58 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2026-03-07 11:57:20 +0100 |
| commit | 122f7df92c158b2317ea2182df522e031307e421 (patch) | |
| tree | 2722f81b892652a86da8300a37df2318772079bc | |
| parent | 95e6194508d34d0217568206c45a7e9686006d44 (diff) | |
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
| -rw-r--r-- | gnu/packages/cran.scm | 23 | ||||
| -rw-r--r-- | 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 49036fc5e8b..5f91995ec96 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -6886,6 +6886,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 3b2dd788a13..8a4aa058d46 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") |
