diff options
author | Lars-Dominik Braun <ldb@leibniz-psychology.org> | 2020-02-04 14:11:51 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2020-02-22 20:42:12 +0100 |
commit | 1c9089d2fcbfcff37b81af15b2004c6387504af3 (patch) | |
tree | d1881be2241cfdf26714d6cce6ca9bfe62148567 /gnu/packages | |
parent | 6998b6f7aa132b2ae1e5e583d8251cc8285c216a (diff) |
gnu: Add r-bdgraph.
* gnu/packages/cran.scm (r-bdgraph): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/cran.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 36af4f054d..afbb563684 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -19941,3 +19941,27 @@ fairly comprehensive overview.") "This is an unofficial package aimed at automating the import of LISREL output in R.") (license license:gpl2))) + +(define-public r-bdgraph + (package + (name "r-bdgraph") + (version "2.62") + (source + (origin + (method url-fetch) + (uri (cran-uri "BDgraph" version)) + (sha256 + (base32 + "1b1vfar940swvn3pcil848qsp8ji50fjjll8jjzp6y2adx0f8pby")))) + (properties `((upstream-name . "BDgraph"))) + (build-system r-build-system) + (propagated-inputs + `(("r-igraph" ,r-igraph))) + (home-page "https://www.uva.nl/profile/a.mohammadi") + (synopsis "Bayesian structure learning in graphical models") + (description + "This package provides statistical tools for Bayesian structure learning +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+))) |