From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:55172) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iyyhX-0007ui-04 for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:16 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iyyhV-0000dD-K4 for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:14 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:36960) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iyyhV-0000cm-Fl for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:13 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iyyhV-0008I8-E5 for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:13 -0500 Subject: [bug#39416] [PATCH 16/34] gnu: Add package r-matrixcalc Resent-Message-ID: From: Lars-Dominik Braun Date: Tue, 4 Feb 2020 14:56:08 +0100 Message-Id: <20200204135626.28261-16-ldb@leibniz-psychology.org> In-Reply-To: <20200204135626.28261-1-ldb@leibniz-psychology.org> References: <20200204135626.28261-1-ldb@leibniz-psychology.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 39416@debbugs.gnu.org Cc: Lars-Dominik Braun * gnu/packages/cran.scm (r-matrixcalc): New variable. --- gnu/packages/cran.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index b26b63afcb..81e8731383 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -19682,3 +19682,24 @@ Response, and the Generalized Partial Credit Models.") (description "The mi package provides functions for data manipulation, imputing missing values in an approximate Bayesian framework, diagnostics of the models used to generate the imputations, confidence-building mechanisms to validate some of the assumptions of the imputation algorithm, and functions to analyze multiply imputed data sets with the appropriate degree of sampling uncertainty.") (license license:gpl2+))) + +(define-public r-matrixcalc + (package + (name "r-matrixcalc") + (version "1.0-3") + (source + (origin + (method url-fetch) + (uri (cran-uri "matrixcalc" version)) + (sha256 + (base32 + "1c4w9dhi5w98qj1wwh9bbpnfk39rhiwjbanalr8bi5nmxkpcmrhp")))) + (properties `((upstream-name . "matrixcalc"))) + (build-system r-build-system) + (home-page + "https://cran.r-project.org/web/packages/matrixcalc") + (synopsis + "Collection of functions for matrix calculations") + (description + "This package provides a collection of functions to support matrix calculations for probability, econometric and numerical analysis. There are additional functions that are comparable to APL functions which are useful for actuarial models such as pension mathematics. This package is used for teaching and research purposes at the Department of Finance and Risk Engineering, New York University, Polytechnic Institute, Brooklyn, NY 11201.") + (license license:gpl2+))) -- 2.20.1