From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ben Woodcroft Subject: [PATCH 2/3] gnu: Add r-mgcv. Date: Thu, 16 Jun 2016 22:47:52 +1000 Message-ID: <1466081273-15127-3-git-send-email-donttrustben@gmail.com> References: <1466081273-15127-1-git-send-email-donttrustben@gmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54377) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bDWin-0004dn-4O for guix-devel@gnu.org; Thu, 16 Jun 2016 08:48:38 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bDWik-0006Hx-CH for guix-devel@gnu.org; Thu, 16 Jun 2016 08:48:33 -0400 Received: from mail-pa0-x242.google.com ([2607:f8b0:400e:c03::242]:35554) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bDWik-0006Hs-4v for guix-devel@gnu.org; Thu, 16 Jun 2016 08:48:30 -0400 Received: by mail-pa0-x242.google.com with SMTP id hf6so3698048pac.2 for ; Thu, 16 Jun 2016 05:48:29 -0700 (PDT) Received: from localhost.localdomain ([103.25.181.216]) by smtp.googlemail.com with ESMTPSA id qc6sm60673756pac.6.2016.06.16.05.48.26 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Thu, 16 Jun 2016 05:48:27 -0700 (PDT) In-Reply-To: <1466081273-15127-1-git-send-email-donttrustben@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 * gnu/packages/statistics.scm (r-mgcv): New variable. --- gnu/packages/statistics.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index e5911d7..c84845d 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -378,6 +378,27 @@ and Francois (2011, JSS), and the book by Eddelbuettel (2013, Springer); see 'citation(\"Rcpp\")' for details on these last two.") (license license:gpl2+))) +(define-public r-mgcv + (package + (name "r-mgcv") + (version "1.8-12") + (source + (origin + (method url-fetch) + (uri (cran-uri "mgcv" version)) + (sha256 + (base32 + "1khzy36nn6xbnzqfc2953ng0sv8w91mns1ymhibaqn1150x1qid0")))) + (build-system r-build-system) + (home-page "http://cran.r-project.org/web/packages/mgcv") + (synopsis "Mixed generalised additive model computation") + (description + "GAMs, GAMMs and other generalized ridge regression with multiple smoothing +parameter estimation by GCV, REML or UBRE/AIC. The library includes a +@code{gam()} function, a wide variety of smoothers, JAGS support and +distributions beyond the exponential family.") + (license license:gpl2+))) + (define-public r-permute (package (name "r-permute") -- 2.7.4