guix-commits
[Top][All Lists]
Advanced

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

03/04: gnu: Add r-pbapply.


From: Ben Woodcroft
Subject: 03/04: gnu: Add r-pbapply.
Date: Fri, 10 Mar 2017 21:10:59 -0500 (EST)

benwoodcroft pushed a commit to branch master
in repository guix.

commit 7711f614502948274ceaf1c7547d8abe40b81c9b
Author: Raoul Jean Pierre Bonnal <address@hidden>
Date:   Sat Mar 11 11:50:25 2017 +1000

    gnu: Add r-pbapply.
    
    * gnu/packages/statistics.scm (r-pbapply): New variable.
    
    Co-authored-by: Ben Woodcroft <address@hidden>
---
 gnu/packages/statistics.scm | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index 6045c79..6ab64a5 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -4401,3 +4401,23 @@ no random-effects models.  Many (150+) models and 
distributions are estimated
 by maximum likelihood estimation (MLE) or penalized MLE, using Fisher scoring.
 VGLMs can be loosely thought of as multivariate generalised linear models.")
     (license license:gpl2+)))
+
+(define-public r-pbapply
+  (package
+    (name "r-pbapply")
+    (version "1.3-2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "pbapply" version))
+       (sha256
+        (base32
+         "1sdmjlnwxb99f95g5v8k8mirrkzw99yig377v0qi9lzwjgd6fqqr"))))
+    (build-system r-build-system)
+    (home-page "https://github.com/psolymos/pbapply";)
+    (synopsis "Adding progress bar to apply functions")
+    (description
+     "This lightweight package that adds progress bar to vectorized R
+functions apply.  The implementation can easily be added to functions where
+showing the progress is useful e.g. bootstrap.")
+    (license license:gpl2)))



reply via email to

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