From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:55404) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iyyhf-0008Ak-2p for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:25 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iyyhb-0000zT-Po for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:22 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:36989) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iyyhb-0000ys-M8 for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:19 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iyyhb-0008KY-KY for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:19 -0500 Subject: [bug#39416] [PATCH 26/34] gnu: Add package r-bdgraph Resent-Message-ID: From: Lars-Dominik Braun Date: Tue, 4 Feb 2020 14:56:18 +0100 Message-Id: <20200204135626.28261-26-ldb@leibniz-psychology.org> In-Reply-To: <20200204135626.28261-1-ldb@leibniz-psychology.org> References: <20200204135626.28261-1-ldb@leibniz-psychology.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 39416@debbugs.gnu.org Cc: Lars-Dominik Braun * gnu/packages/cran.scm (r-bdgraph): New variable. --- gnu/packages/cran.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 1d6a26c6fa..7b9545ca30 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -19972,3 +19972,29 @@ Jayhawk, Go K.U.\".") output in R. This package or its maintainer is not in any way affiliated with the creators of LISREL and SSI, Inc.") (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 using Birth-Death MCMC") + (description + "Statistical tools for Bayesian structure learning in undirected +graphical models for continuous, discrete, and mixed data. The package is +implemented the recent improvements in the Bayesian graphical models +literature, including Mohammadi and Wit (2015) , +Mohammadi and Wit (2019) .") + (license license:gpl2+))) -- 2.20.1