me
/
guix
Archived
1
0
Fork 0

gnu: Add r-hiddenmarkov.

* gnu/packages/cran.scm (r-hiddenmarkov): New variable.
master
Roel Janssen 2021-05-26 16:17:06 +02:00
parent 4e9bb49688
commit cd5d1df152
No known key found for this signature in database
GPG Key ID: CBD0CD5138C19AFC
1 changed files with 22 additions and 0 deletions

View File

@ -1234,6 +1234,28 @@ and make inference with discrete time and discrete space hidden Markov
models.")
(license license:gpl2+)))
(define-public r-hiddenmarkov
(package
(name "r-hiddenmarkov")
(version "1.8-13")
(source (origin
(method url-fetch)
(uri (cran-uri "HiddenMarkov" version))
(sha256
(base32
"05dm3nl0ffsz2ziw3bz5bivyxk7r5bxs8xhky3hz660qaqzd51ki"))))
(build-system r-build-system)
(native-inputs
`(("gfortran" ,gfortran)))
(home-page "https://cran.r-project.org/web/packages/HiddenMarkov/")
(synopsis "Hidden markov models for R")
(description "This package contains functions for the analysis of Discrete
Time Hidden Markov Models, Markov Modulated GLMs and the Markov Modulated
Poisson Process. It includes functions for simulation, parameter estimation,
and the Viterbi algorithm. The algorithms are based of those of Walter
Zucchini.")
(license license:gpl2+)))
(define-public r-httpuv
(package
(name "r-httpuv")