guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

07/19: gnu: Add r-bootstrap.


From: guix-commits
Subject: 07/19: gnu: Add r-bootstrap.
Date: Wed, 9 Jan 2019 11:14:09 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit afc0d8158b654381789b7e1c9dea9512cf63afbf
Author: Ricardo Wurmus <address@hidden>
Date:   Wed Jan 9 16:44:13 2019 +0100

    gnu: Add r-bootstrap.
    
    * gnu/packages/cran.scm (r-bootstrap): New variable.
---
 gnu/packages/cran.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index f2fb042..00eab12 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -10055,3 +10055,26 @@ meta-analysis for two-sample comparisons and 
cumulative meta-analyses.  It
 draws standard summary plots, funnel plots, and computes summaries and tests
 for association and heterogeneity.")
     (license license:gpl2)))
+
+(define-public r-bootstrap
+  (package
+    (name "r-bootstrap")
+    (version "2017.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "bootstrap" version))
+       (sha256
+        (base32
+         "08lmsy7k8wsgv89yc904c6fidcymr1ma2ry4fl0p69p21v4iiwa4"))))
+    (build-system r-build-system)
+    (native-inputs `(("gfortran" ,gfortran)))
+    (home-page "https://cran.r-project.org/web/packages/bootstrap";)
+    (synopsis "Functions for the book \"An Introduction to the Bootstrap\"")
+    (description
+     "This package provides software and data for the book \"An Introduction
+to the Bootstrap\" by B. Efron and R. Tibshirani, 1993, Chapman and Hall.
+This package is primarily provided for projects already based on it, and for
+support of the book.  New projects should preferentially use the recommended
+package \"boot\".")
+    (license license:bsd-3)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]