mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 14:52:05 -05:00
gnu: Add r-prospectr.
* gnu/packages/cran.scm (r-prospectr): New variable.
This commit is contained in:
parent
74ef7fd9a3
commit
8d02c4f618
1 changed files with 28 additions and 1 deletions
|
@ -17,7 +17,7 @@
|
|||
;;; Copyright © 2018 Marius Bakke <mbakke@fastmail.com>
|
||||
;;; Copyright © 2018, 2019 Brett Gilio <brettg@gnu.org>
|
||||
;;; Copyright © 2019 Nicolò Balzarotti <anothersms@gmail.com>
|
||||
;;; Copyright © 2019, 2020, 2021 Wiktor Żelazny <wzelazny@vurv.cz>
|
||||
;;; Copyright © 2019, 2020, 2021, 2022 Wiktor Żelazny <wzelazny@vurv.cz>
|
||||
;;; Copyright © 2019 Arne Babenhauserheide <arne_bab@web.de>
|
||||
;;; Copyright © 2019, 2020 Efraim Flashner <efraim@flashner.co.il>
|
||||
;;; Copyright © 2020 Todor Kondić <tk.code@protonmail.com>
|
||||
|
@ -17434,6 +17434,33 @@ (define-public r-profvis
|
|||
profiling R code.")
|
||||
(license license:gpl3)))
|
||||
|
||||
(define-public r-prospectr
|
||||
(package
|
||||
(name "r-prospectr")
|
||||
(version "0.2.6")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (cran-uri "prospectr" version))
|
||||
(sha256
|
||||
(base32
|
||||
"1p53hcgcs2p09zhc2n7byjzrgvcgz6w7q00mlsn4kmnz7l4p7rrm"))))
|
||||
(properties `((upstream-name . "prospectr")))
|
||||
(build-system r-build-system)
|
||||
(propagated-inputs
|
||||
(list r-foreach
|
||||
r-iterators
|
||||
r-lifecycle
|
||||
r-mathjaxr
|
||||
r-rcpp
|
||||
r-rcpparmadillo))
|
||||
(home-page "https://github.com/l-ramirez-lopez/prospectr")
|
||||
(synopsis "Functions for processing and sample selection of spectroscopic data")
|
||||
(description
|
||||
"@code{prospectr} provides miscellaneous functions to preprocess
|
||||
spectroscopic data and conduct representative sample selection, or calibration
|
||||
sampling.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public r-protviz
|
||||
(package
|
||||
(name "r-protviz")
|
||||
|
|
Loading…
Reference in a new issue