mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 22:38:07 -05:00
gnu: Add r-earlywarnings.
* gnu/packages/cran.scm (r-earlywarnings): New variable. Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
This commit is contained in:
parent
432cf5b449
commit
aaf261cc8c
1 changed files with 33 additions and 0 deletions
|
@ -603,6 +603,39 @@ (define-public r-dmwr2
|
|||
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")
|
||||
|
|
Loading…
Reference in a new issue