gnu: Add r-boa.
authorDanny Milosavljevic <dannym@scratchpost.org>
Thu, 19 Mar 2020 22:52:50 +0000 (23:52 +0100)
committerDanny Milosavljevic <dannym@scratchpost.org>
Sat, 21 Mar 2020 13:13:03 +0000 (14:13 +0100)
* gnu/packages/cran.scm (r-boa): New variable.

Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
gnu/packages/cran.scm

index a001e13..e022651 100644 (file)
@@ -20823,3 +20823,24 @@ function @code{[} and replacement function @code{[<-} of custom matrix-like
 types (based on S3, S4, etc.), modeled as closely to the base matrix class
 as possible (with tests to prove it).")
     (license license:expat)))
+
+(define-public r-boa
+  (package
+    (name "r-boa")
+    (version "1.1.8-2")
+    (source
+     (origin
+      (method url-fetch)
+      (uri (cran-uri "boa" version))
+      (sha256
+       (base32
+        "04lhqk5qfvaz1jk90glr2yi5vq7cdy0w8m6g2lnzk359l9y41zhp"))))
+    (properties `((upstream-name . "boa")))
+    (build-system r-build-system)
+    (home-page "http://www.jstatsoft.org/v21/i11")
+    (synopsis "Library for @dfn{Bayesian Output Analysis Program} (BOA) for MCMC")
+    (description
+     "This package provides a menu-driven program and library of functions for
+carrying out convergence diagnostics and statistical and graphical analysis of
+@dfn{Markov chain Monte Carlo} (MCMC) sampling output.")
+    (license license:gpl2+)))