diff options
author | Lars-Dominik Braun <ldb@leibniz-psychology.org> | 2020-02-04 14:12:19 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2020-02-22 20:42:12 +0100 |
commit | 2919b3ce40b18d73c3348cc59008f6d2be4a0b3e (patch) | |
tree | 7daef3d438663c98d7a84c65a5fa8de451b45308 /gnu/packages/cran.scm | |
parent | 1c9089d2fcbfcff37b81af15b2004c6387504af3 (diff) | |
download | patches-2919b3ce40b18d73c3348cc59008f6d2be4a0b3e.tar patches-2919b3ce40b18d73c3348cc59008f6d2be4a0b3e.tar.gz |
gnu: Add r-ggm.
* gnu/packages/cran.scm (r-ggm): New variable.
Diffstat (limited to 'gnu/packages/cran.scm')
-rw-r--r-- | gnu/packages/cran.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index afbb563684..b528e0bf9d 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -19965,3 +19965,25 @@ in undirected graphical models for continuous, discrete, and mixed data. It uses a trans-dimensional @dfn{Markov Chain Monte Carlo} (MCMC) approach based on a continuous-time birth-death process.") (license license:gpl2+))) + +(define-public r-ggm + (package + (name "r-ggm") + (version "2.3") + (source + (origin + (method url-fetch) + (uri (cran-uri "ggm" version)) + (sha256 + (base32 + "1n4y459x2i0jil8chjjqqjs28a8pzfxrws2fcjkg3il7zy0zwbw3")))) + (properties `((upstream-name . "ggm"))) + (build-system r-build-system) + (propagated-inputs + `(("r-igraph" ,r-igraph))) + (home-page "https://cran.r-project.org/package=ggm") + (synopsis "Functions for graphical Markov models") + (description + "This package provides functions and datasets for maximum likelihood +fitting of some classes of graphical Markov models.") + (license license:gpl2+))) |