From mboxrd@z Thu Jan 1 00:00:00 1970 From: Raoul Bonnal Subject: [PATCH 21/35] gnu: Add r-matrixmodels. Date: Thu, 19 Jan 2017 19:55:16 +0100 Message-ID: <20170119185530.35824-21-ilpuccio.febo@gmail.com> References: <20170119185530.35824-1-ilpuccio.febo@gmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:35635) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cUHsg-00061X-GU for guix-devel@gnu.org; Thu, 19 Jan 2017 13:56:19 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cUHsf-0004fp-MD for guix-devel@gnu.org; Thu, 19 Jan 2017 13:56:18 -0500 Received: from mail-wm0-x243.google.com ([2a00:1450:400c:c09::243]:35346) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cUHsf-0004fJ-GM for guix-devel@gnu.org; Thu, 19 Jan 2017 13:56:17 -0500 Received: by mail-wm0-x243.google.com with SMTP id d140so1069847wmd.2 for ; Thu, 19 Jan 2017 10:56:17 -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-matrixmodels): 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 5955cea..9f8f53d 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -4494,3 +4494,23 @@ bootstrap test for generalized linear mixed models.") "This package provides a collection of metrics for evaluating models written in C++ using Rcpp.") (license license:gpl2+))) + +(define-public r-matrixmodels + (package + (name "r-matrixmodels") + (version "0.4-1") + (source + (origin + (method url-fetch) + (uri (cran-uri "MatrixModels" version)) + (sha256 + (base32 + "0cyfvhci2p1vr2x52ymkyqqs63x1qchn856dh2j94yb93r08x1zy")))) + (properties `((upstream-name . "MatrixModels"))) + (build-system r-build-system) + (home-page "http://Matrix.R-forge.R-project.org/") + (synopsis "Modelling with sparse and dense matrices") + (description + "This package models with sparse and dense matrix matrices, +using modular prediction and response module classes.") + (license license:gpl2+))) -- 1.9.1