This is an automated email from the git hooks/post-receive script.
rekado pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new e68c8d3 gnu: Add r-bridgesampling.
e68c8d3 is described below
commit e68c8d3ef8d59b8c81fedd8fe9ea38f51cb9437a
Author: Eric Brown <[email protected]>
AuthorDate: Sun Apr 19 14:07:27 2020 -0500
gnu: Add r-bridgesampling.
* gnu/packages/cran.scm (r-bridgesampling): New variable.
Signed-off-by: Ricardo Wurmus <[email protected]>
---
gnu/packages/cran.scm | 33 ++++++++++++++++++++++++++++++++-
1 file changed, 32 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 757f809..70cb7cc 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -14,13 +14,13 @@
;;; Copyright © 2018 Laura Lazzati <[email protected]>
;;; Copyright © 2018 Leo Famulari <[email protected]>
;;; Copyright © 2018 Marius Bakke <[email protected]>
-;;; Copyright © 2018 Eric Brown <[email protected]>
;;; Copyright © 2018, 2019 Brett Gilio <[email protected]>
;;; Copyright © 2019 Nicolò Balzarotti <[email protected]>
;;; Copyright © 2019 Wiktor Żelazny <[email protected]>
;;; Copyright © 2020 Todor Kondić <[email protected]>
;;; Copyright © 2020 Danjela Lura <[email protected]>
;;; Copyright © 2020 Naga Malleswari <[email protected]>
+;;; Copyright © 2020 Eric Brown <[email protected]>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -21131,3 +21131,34 @@ vignettes from notebooks. Those notebooks
(@code{.ipynb} files) are files
containing rich text, code, and its output. Code cells can be edited and
evaluated interactively.")
(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+)))