From mboxrd@z Thu Jan 1 00:00:00 1970 From: Raoul Bonnal Subject: [PATCH 31/35] gnu: Add r-numderiv. Date: Thu, 19 Jan 2017 19:55:26 +0100 Message-ID: <20170119185530.35824-31-ilpuccio.febo@gmail.com> References: <20170119185530.35824-1-ilpuccio.febo@gmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:36016) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cUHsx-0006KB-Un for guix-devel@gnu.org; Thu, 19 Jan 2017 13:56:37 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cUHsw-0004vB-8F for guix-devel@gnu.org; Thu, 19 Jan 2017 13:56:35 -0500 Received: from mail-wm0-x244.google.com ([2a00:1450:400c:c09::244]:34263) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cUHsw-0004ul-20 for guix-devel@gnu.org; Thu, 19 Jan 2017 13:56:34 -0500 Received: by mail-wm0-x244.google.com with SMTP id c85so1072674wmi.1 for ; Thu, 19 Jan 2017 10:56:33 -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-numderiv): 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 4459bf3..ca199bf 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -4732,3 +4732,23 @@ for generating random vectors sampled from these distributions. Probabilities are computed via non-Monte Carlo methods.") (license (list license:gpl2 license:gpl3)))) + +(define-public r-numderiv + (package + (name "r-numderiv") + (version "2016.8-1") + (source + (origin + (method url-fetch) + (uri (cran-uri "numDeriv" version)) + (sha256 + (base32 + "07ni52rwiap4wilfz94w5mrqaxr59axxmgn57857ip4p6qkiss0v")))) + (properties `((upstream-name . "numDeriv"))) + (build-system r-build-system) + (home-page "http://optimizer.r-forge.r-project.org/") + (synopsis "Accurate numerical derivatives") + (description + "This package provides methods for calculating accurate numerical +first and second order derivatives.") + (license license:gpl2))) -- 1.9.1