From mboxrd@z Thu Jan 1 00:00:00 1970 From: Raoul Bonnal Subject: [PATCH 17/35] gnu: Add r-pbapply. Date: Thu, 19 Jan 2017 19:55:12 +0100 Message-ID: <20170119185530.35824-17-ilpuccio.febo@gmail.com> References: <20170119185530.35824-1-ilpuccio.febo@gmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:35586) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cUHse-0005zc-0i for guix-devel@gnu.org; Thu, 19 Jan 2017 13:56:17 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cUHsa-0004cv-9u for guix-devel@gnu.org; Thu, 19 Jan 2017 13:56:16 -0500 Received: from mail-wm0-x241.google.com ([2a00:1450:400c:c09::241]:33226) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cUHsa-0004cK-3T for guix-devel@gnu.org; Thu, 19 Jan 2017 13:56:12 -0500 Received: by mail-wm0-x241.google.com with SMTP id r144so1085348wme.0 for ; Thu, 19 Jan 2017 10:56:11 -0800 (PST) In-Reply-To: <20170119185530.35824-1-ilpuccio.febo@gmail.com> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org From: Raoul Jean Pierre Bonnal * 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