me
/
guix
Archived
1
0
Fork 0

gnu: Add r-maptree.

* gnu/packages/cran.scm (r-maptree): New variable.

Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
Navid Afkhami 2023-08-21 13:44:36 +00:00 committed by Ricardo Wurmus
parent dd14ee0676
commit 2dc030f38f
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 23 additions and 0 deletions

View File

@ -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")