From mboxrd@z Thu Jan 1 00:00:00 1970 From: Raoul Bonnal Subject: [PATCH 16/35] gnu: Add r-vgam. Date: Thu, 19 Jan 2017 19:55:11 +0100 Message-ID: <20170119185530.35824-16-ilpuccio.febo@gmail.com> References: <20170119185530.35824-1-ilpuccio.febo@gmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:35551) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cUHsZ-0005vw-UI for guix-devel@gnu.org; Thu, 19 Jan 2017 13:56:15 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cUHsY-0004bs-NM for guix-devel@gnu.org; Thu, 19 Jan 2017 13:56:12 -0500 Received: from mail-wm0-x242.google.com ([2a00:1450:400c:c09::242]:33222) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cUHsY-0004bF-H6 for guix-devel@gnu.org; Thu, 19 Jan 2017 13:56:10 -0500 Received: by mail-wm0-x242.google.com with SMTP id r144so1085109wme.0 for ; Thu, 19 Jan 2017 10:56:10 -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-vgam): 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 9defb9f..9a64248 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -4384,3 +4384,29 @@ phylogenetic framework, ancestral character analyses, analyses of diversification and macroevolution, computing distances from DNA sequences, and several other tools.") (license license:gpl2+))) + +(define-public r-vgam + (package + (name "r-vgam") + (version "1.0-3") + (source + (origin + (method url-fetch) + (uri (cran-uri "VGAM" version)) + (sha256 + (base32 + "0wr6szcpj8r4a1rlzgd6iym7khin69fmvxcf37iyvs8mms86dfr3")))) + (properties `((upstream-name . "VGAM"))) + (build-system r-build-system) + (inputs + `(("gfortran" ,gfortran))) + (home-page "https://www.stat.auckland.ac.nz/~yee/VGAM") + (synopsis "Vector generalized linear and additive models") + (description + "This package is an implementation of about 6 major classes of statistical +regression models. Currently only fixed-effects models are implemented, i.e., +no random-effects models. Many (150+) models and distributions are estimated +by maximum likelihood estimation (MLE) or penalized MLE, using Fisher scoring. +VGLMs can be loosely thought of as multivariate GLMs.") + (license (list license:gpl2 + license:gpl3)))) -- 1.9.1