me
/
guix
Archived
1
0
Fork 0

gnu: Add r-acp.

* gnu/packages/cran.scm (r-acp): New variable.
master
Ricardo Wurmus 2019-12-13 23:08:51 +01:00
parent c12227d971
commit 56cba940c3
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 24 additions and 0 deletions

View File

@ -17452,3 +17452,27 @@ by an error-driven learning algorithm that discriminates between meanings
straight from smart acoustic features, bypassing the phoneme as recognition
unit.\" @url{doi:10.1371/journal.pone.0174623}")
(license license:gpl2+)))
(define-public r-acp
(package
(name "r-acp")
(version "2.1")
(source
(origin
(method url-fetch)
(uri (cran-uri "acp" version))
(sha256
(base32
"0lcwbjcyyr32m6qjmjqh25qjwrbyqj1n092xhgbhxzd8fslppnmn"))))
(properties `((upstream-name . "acp")))
(build-system r-build-system)
(propagated-inputs
`(("r-quantmod" ,r-quantmod)
("r-tseries" ,r-tseries)))
(home-page "https://cran.r-project.org/web/packages/acp/")
(synopsis "Autoregressive conditional Poisson")
(description
"This package supports the analysis of count data exhibiting
autoregressive properties, using the @dfn{Autoregressive Conditional Poisson}
model (ACP(p,q)) proposed by Heinen (2003).")
(license license:gpl2)))