gnu: Add r-hiddenmarkov.

* gnu/packages/cran.scm (r-hiddenmarkov): New variable.
This commit is contained in:
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

View file

@ -1234,6 +1234,28 @@ (define-public r-hmm
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")