From mboxrd@z Thu Jan 1 00:00:00 1970 From: Raoul Bonnal Subject: [PATCH 28/35] gnu: Add r-lme4. Date: Thu, 19 Jan 2017 19:55:23 +0100 Message-ID: <20170119185530.35824-28-ilpuccio.febo@gmail.com> References: <20170119185530.35824-1-ilpuccio.febo@gmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:35890) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cUHss-0006EP-DB for guix-devel@gnu.org; Thu, 19 Jan 2017 13:56:31 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cUHsr-0004qz-Hj for guix-devel@gnu.org; Thu, 19 Jan 2017 13:56:30 -0500 Received: from mail-wm0-x243.google.com ([2a00:1450:400c:c09::243]:36787) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cUHsr-0004pl-BG for guix-devel@gnu.org; Thu, 19 Jan 2017 13:56:29 -0500 Received: by mail-wm0-x243.google.com with SMTP id r126so1048704wmr.3 for ; Thu, 19 Jan 2017 10:56:29 -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-lme4): New variable. --- gnu/packages/statistics.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 969b557..7afce82 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -4659,3 +4659,29 @@ based on an interface to Fortran implementations by M. J. D. Powell.") "This package provides misc functions for training and plotting classification and regression models.") (license license:gpl2+))) + +(define-public r-lme4 + (package + (name "r-lme4") + (version "1.1-12") + (source + (origin + (method url-fetch) + (uri (cran-uri "lme4" version)) + (sha256 + (base32 + "0j60l5kgx1wvw2wm3jwfqwi63hammaq8gfcxzwa4h552likvaxi9")))) + (build-system r-build-system) + (propagated-inputs + `(("r-minqa" ,r-minqa) + ("r-nloptr" ,r-nloptr) + ("r-rcpp" ,r-rcpp) + ("r-rcppeigen" ,r-rcppeigen))) + (home-page "http://cran.r-project.org/web/packages/lme4") + (synopsis "Linear mixed-effects models using eigen and S4") + (description + "This package provides fit linear and generalized linear mixed-effects models. +The models and their components are represented using S4 classes and methods. +The core computational algorithms are implemented using the Eigen C++ library for +numerical linear algebra and RcppEigen glue.") + (license license:gpl2+))) -- 1.9.1