From: Raoul Jean Pierre Bonnal <[email protected]>
* gnu/packages/statistics.scm (r-pbapply): New variable.
---
gnu/packages/statistics.scm | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index 9a64248..862292f 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -4410,3 +4410,23 @@ by maximum likelihood estimation (MLE) or penalized MLE,
using Fisher scoring.
VGLMs can be loosely thought of as multivariate GLMs.")
(license (list license:gpl2
license:gpl3))))
+
+(define-public r-pbapply
+ (package
+ (name "r-pbapply")
+ (version "1.3-1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (cran-uri "pbapply" version))
+ (sha256
+ (base32
+ "053i92j0ch3msywapdia08mmk1w8bhcs6x7cl0han2r9sfliwkzw"))))
+ (build-system r-build-system)
+ (home-page "https://github.com/psolymos/pbapply")
+ (synopsis "Adding progress bar to apply functions")
+ (description
+ "This package provides a 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)))
--
1.9.1