me
/
guix
Archived
1
0
Fork 0

gnu: Add r-prospectr.

* gnu/packages/cran.scm (r-prospectr): New variable.
master
Wiktor Żelazny 2022-10-07 15:38:19 +02:00 committed by Ricardo Wurmus
parent 74ef7fd9a3
commit 8d02c4f618
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 28 additions and 1 deletions

View File

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