guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: Add r-maptree.


From: guix-commits
Subject: branch master updated: gnu: Add r-maptree.
Date: Mon, 28 Aug 2023 03:55:49 -0400

This is an automated email from the git hooks/post-receive script.

rekado pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 2dc030f38f gnu: Add r-maptree.
2dc030f38f is described below

commit 2dc030f38f111121791cb7407ea049eeb296e1fe
Author: Navid Afkhami <navid.afkhami@mdc-berlin.de>
AuthorDate: Mon Aug 21 13:44:36 2023 +0000

    gnu: Add r-maptree.
    
    * gnu/packages/cran.scm (r-maptree): 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 223d1d3a3d..221f8f628d 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -11460,6 +11460,29 @@ exchanging spatial objects with other R packages.")
     (license (list license:gpl2+
                    license:expat))))
 
+(define-public r-maptree
+  (package
+    (name "r-maptree")
+    (version "1.4-8")
+    (source (origin
+              (method url-fetch)
+              (uri (cran-uri "maptree" version))
+              (sha256
+               (base32
+                "1x35nk4fi2b62krcvcv187n5sbqrgvw4pbm7r19ps3jlanpi5ksm"))))
+    (properties `((upstream-name . "maptree")))
+    (build-system r-build-system)
+    (propagated-inputs (list r-cluster r-rpart))
+    (home-page "https://cran.r-project.org/package=maptree";)
+    (synopsis "Mapping, pruning, and graphing tree models")
+    (description
+     "This package provides a set of functions with example data for graphing,
+pruning, and mapping models.  These models are from hierarchical clustering,
+and classification and regression trees.")
+    ;; Unlimited distribution; see
+    ;; https://cran.r-project.org/web/packages/maptree/index.html
+    (license (license:non-copyleft "file://DESCRIPTION"))))
+
 (define-public r-later
   (package
     (name "r-later")



reply via email to

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