From 2dc030f38f111121791cb7407ea049eeb296e1fe Mon Sep 17 00:00:00 2001 From: Navid Afkhami Date: Mon, 21 Aug 2023 13:44:36 +0000 Subject: [PATCH] gnu: Add r-maptree. * gnu/packages/cran.scm (r-maptree): New variable. Signed-off-by: Ricardo Wurmus --- 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")