me
/
guix
Archived
1
0
Fork 0

gnu: Add r-earlywarnings.

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

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

View File

@ -603,6 +603,39 @@ edition of the book \"Data Mining with R, learning with case studies\"
by Luis Torgo, published by CRC Press.")
(license license:gpl2+)))
(define-public r-earlywarnings
(package
(name "r-earlywarnings")
(version "1.1.29")
(source (origin
(method url-fetch)
(uri (cran-uri "earlywarnings" version))
(sha256
(base32
"1xa9rijqqxa5l253dg8dn1jjhdakf8krl5rflq5v9gybfyrq1885"))))
(properties `((upstream-name . "earlywarnings")))
(build-system r-build-system)
(propagated-inputs (list r-fields
r-ggplot2
r-kendall
r-kernsmooth
r-knitr
r-lmtest
r-moments
r-nortest
r-quadprog
r-som
r-spam
r-tgp
r-tseries))
(native-inputs (list r-knitr))
(home-page "https://www.early-warning-signals.org")
(synopsis "Early warning signals for critical transitions in time series")
(description
"This package offers methods for estimating statistical changes in time
series. These are used for identifying nearby critical transitions.")
(license license:bsd-2)))
(define-public r-embedsom
(package
(name "r-embedsom")