summaryrefslogtreecommitdiff
path: root/gnu/packages/cran.scm
diff options
context:
space:
mode:
authorNavid Afkhami <navid.afkhami@mdc-berlin.de>2023-08-21 13:44:36 +0000
committerRicardo Wurmus <rekado@elephly.net>2023-08-28 09:54:46 +0200
commit2dc030f38f111121791cb7407ea049eeb296e1fe (patch)
tree70fc26a12a2f6d0b861a7e4d7e57965b891262a0 /gnu/packages/cran.scm
parentdd14ee0676cdd2ef9c5c0e8bfff66391c1975bd8 (diff)
gnu: Add r-maptree.
* gnu/packages/cran.scm (r-maptree): New variable. Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
Diffstat (limited to 'gnu/packages/cran.scm')
-rw-r--r--gnu/packages/cran.scm23
1 files changed, 23 insertions, 0 deletions
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")