diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2024-07-02 11:25:02 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2024-07-17 22:38:23 +0200 |
commit | f5c336b1ad2cf545de4d2fedaafe0c8d45e39665 (patch) | |
tree | 963aff01cd63fb43128ae975f47548157cdba12c | |
parent | 5fd662cd4d5e52181463ed120a9e6352715b1cb3 (diff) |
gnu: Add r-gparotation.
* gnu/packages/cran.scm (r-gparotation): New variable.
Change-Id: I39d6261c4cf607b54faa0abf912e279eb4599b49
-rw-r--r-- | gnu/packages/cran.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 96da38a300..7965f9e737 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -3024,6 +3024,25 @@ axis, or summary graphics on a continuous axis such as a boxplot or a density distribution.") (license license:expat))) +(define-public r-gparotation + (package + (name "r-gparotation") + (version "2024.3-1") + (source + (origin + (method url-fetch) + (uri (cran-uri "GPArotation" version)) + (sha256 + (base32 "1njl4qg5jgmx14r41q1kzfmhf4zga3yjkig0h7ar35bq56pmgxl8")))) + (properties `((upstream-name . "GPArotation"))) + (build-system r-build-system) + (home-page "https://optimizer.r-forge.r-project.org/GPArotation_www/") + (synopsis "Gradient projection factor rotation") + (description + "This package provides gradient projection algorithms for factor +rotation. For details see @code{?GPArotation}.") + (license license:gpl2+))) + (define-public r-gprofiler (package (name "r-gprofiler") |