guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/02: gnu: Add r-forge.


From: guix-commits
Subject: 01/02: gnu: Add r-forge.
Date: Fri, 11 Sep 2020 05:24:07 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit 6761090ca717583407c988ee2131f2c5e53b58af
Author: Peter Lo <peterloleungyau@gmail.com>
AuthorDate: Sun Jun 28 16:57:43 2020 +0800

    gnu: Add r-forge.
    
    * gnu/packages/cran.scm (r-forge): New variable.
    
    Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
---
 gnu/packages/cran.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 4339719..305f8e9 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -23558,3 +23558,26 @@ risk' table and 'censoring count plot'.  Other 
functions are also available to
 plot adjusted curves for Cox model and to visually examine Cox model
 assumptions.")
     (license license:gpl2)))
+
+(define-public r-forge
+  (package
+    (name "r-forge")
+    (version "0.2.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "forge" version))
+       (sha256
+        (base32
+         "0pjfzsc35agkh0zfw2czwajkbsyn6liys5irl5bhz5r1vim3jmwa"))))
+    (properties `((upstream-name . "forge")))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-magrittr" ,r-magrittr)
+       ("r-rlang" ,r-rlang)))
+    (home-page "https://cran.r-project.org/web/packages/forge/";)
+    (synopsis "Cast values into shape")
+    (description
+     "This package provides helper functions with a consistent interface to
+coerce and verify the types and shapes of values for input checking.")
+    (license license:asl2.0)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]