me
/
guix
Archived
1
0
Fork 0

gnu: Add r-bdgraph.

* gnu/packages/cran.scm (r-bdgraph): New variable.
master
Lars-Dominik Braun 2020-02-04 14:11:51 +01:00 committed by Ricardo Wurmus
parent 6998b6f7aa
commit 1c9089d2fc
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 24 additions and 0 deletions

View File

@ -19941,3 +19941,27 @@ fairly comprehensive overview.")
"This is an unofficial package aimed at automating the import of LISREL "This is an unofficial package aimed at automating the import of LISREL
output in R.") output in R.")
(license license:gpl2))) (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+)))