mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 06:06:53 -05:00
gnu: Add r-slanter.
* gnu/packages/cran.scm (r-slanter): New variable. Change-Id: I3b6c76431940f5e6be6a86344029552dded54e54
This commit is contained in:
parent
a4d8a93abc
commit
c46f46f2f3
1 changed files with 22 additions and 0 deletions
|
@ -37,6 +37,7 @@
|
||||||
;;; Copyright © 2021 Guillaume Le Vaillant <glv@posteo.net>
|
;;; Copyright © 2021 Guillaume Le Vaillant <glv@posteo.net>
|
||||||
;;; Copyright © 2022-2024 Navid Afkhami <navid.afkhami@mdc-berlin.de>
|
;;; Copyright © 2022-2024 Navid Afkhami <navid.afkhami@mdc-berlin.de>
|
||||||
;;; Copyright © 2022 Greg Hogan <code@greghogan.com>
|
;;; Copyright © 2022 Greg Hogan <code@greghogan.com>
|
||||||
|
;;; Copyright © 2024 Marco Baggio <guix@mawumag.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -15775,6 +15776,27 @@ (define-public r-slam
|
||||||
based on index arrays and simple triplet representations, respectively.")
|
based on index arrays and simple triplet representations, respectively.")
|
||||||
(license license:gpl2)))
|
(license license:gpl2)))
|
||||||
|
|
||||||
|
(define-public r-slanter
|
||||||
|
(package
|
||||||
|
(name "r-slanter")
|
||||||
|
(version "0.2-0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (cran-uri "slanter" version))
|
||||||
|
(sha256
|
||||||
|
(base32 "024dkman0r5qzc215gw0ds932vdaz8krrhv64fjw9pni37ixc3mf"))))
|
||||||
|
(properties `((upstream-name . "slanter")))
|
||||||
|
(build-system r-build-system)
|
||||||
|
(propagated-inputs (list r-matrix r-pheatmap r-pracma))
|
||||||
|
(native-inputs (list r-knitr))
|
||||||
|
(home-page "https://cran.r-project.org/package=slanter")
|
||||||
|
(synopsis "Slanted matrices and ordered clustering")
|
||||||
|
(description
|
||||||
|
"This is a package for slanted matrices and ordered clustering for better
|
||||||
|
visualization of similarity data.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public r-manipulatewidget
|
(define-public r-manipulatewidget
|
||||||
(package
|
(package
|
||||||
(name "r-manipulatewidget")
|
(name "r-manipulatewidget")
|
||||||
|
|
Loading…
Reference in a new issue