From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:42665) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jPpiK-0002CK-8P for guix-patches@gnu.org; Sat, 18 Apr 2020 11:49:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jPpiH-0000jA-Vn for guix-patches@gnu.org; Sat, 18 Apr 2020 11:49:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:60129) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jPpiH-0000ii-SC for guix-patches@gnu.org; Sat, 18 Apr 2020 11:49:01 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jPpiH-0004ZR-S7 for guix-patches@gnu.org; Sat, 18 Apr 2020 11:49:01 -0400 Subject: [bug#40696] New package 'r-bridgesampling" Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:53800) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jPlQv-0007n2-2J for guix-patches@gnu.org; Sat, 18 Apr 2020 07:14:50 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jPlQt-0005SR-QL for guix-patches@gnu.org; Sat, 18 Apr 2020 07:14:48 -0400 Received: from 216-80-121-173.s13.demp-ubr2.chi-demp.il.static.cable.rcncustomer.com ([216.80.121.173]:52918 helo=ericcbrown.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1jPlQt-0005QW-Kq for guix-patches@gnu.org; Sat, 18 Apr 2020 07:14:47 -0400 From: Eric Brown Date: Sat, 18 Apr 2020 06:14:39 -0500 Message-ID: <87mu79cag0.fsf@ericcbrown.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" 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: 40696@debbugs.gnu.org Cc: ricardo.wurmus@mdc-berlin.de --=-=-= Content-Type: text/plain Dear Guix, @rekado: Please see the attached diff for the CRAN package `bridgesampling' intended for gnu/packages/cran.scm. Best regards, Eric --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=0001-r-bridgesampling.scm.patch Content-Description: r-bridgesampling.scm.patch >From 055dea79291dded20eafd42eb987445cbdf736b8 Mon Sep 17 00:00:00 2001 From: Eric Brown Date: Fri, 17 Apr 2020 15:12:49 -0500 Subject: [PATCH] r-bridgesampling.scm --- gnu/packages/cran.scm | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index f5863e1f6e..f93b7e457f 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -21102,3 +21102,35 @@ client).") designs with and without early outcomes for treatment selection and subpopulation type designs.") (license license:gpl3))) + +(define-public r-bridgesampling + (package + (name "r-bridgesampling") + (version "1.0-0") + (source + (origin + (method url-fetch) + (uri (cran-uri "bridgesampling" version)) + (sha256 + (base32 + "1awhvv0v42w2q6llqi1wqpaiv5zx74cqzigdsvphy2jfp8ajw64y")))) + (properties + `((upstream-name . "bridgesampling"))) + (build-system r-build-system) + (propagated-inputs + `(("r-brobdingnag" ,r-brobdingnag) + ("r-coda" ,r-coda) + ("r-matrix" ,r-matrix) + ("r-mvtnorm" ,r-mvtnorm) + ("r-scales" ,r-scales) + ("r-stringr" ,r-stringr))) + (native-inputs `(("r-knitr" ,r-knitr))) + (home-page + "https://github.com/quentingronau/bridgesampling") + (synopsis + "Bridge Sampling for Marginal Likelihoods and Bayes Factors") + (description + "This package provides functions for estimating marginal likelihoods, Bayes +factors, posterior model probabilities, and normalizing constants in general, +via different versions of bridge sampling.") + (license license:gpl2+))) -- 2.26.1 --=-=-=--