Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 24 Nov 2015 06:22:04 +0000 (UTC)
From:      Wen Heping <wen@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r402348 - in head/math: . R-cran-VGAM
Message-ID:  <201511240622.tAO6M40B081273@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: wen
Date: Tue Nov 24 06:22:04 2015
New Revision: 402348
URL: https://svnweb.freebsd.org/changeset/ports/402348

Log:
  An implementation of about 6 major classes of statistical regression
  models.At the heart of it are the vector generalized linear and
  additive model (VGLM/VGAM) classes, and the book "Vector Generalized
  Linear and Additive Models: With an Implementation in R" (Yee, 2015)
  gives details of the statistical framework and VGAM package. Currently
  only fixed-effects models are implemented, i.e., no random-effects models.
  
  WWW: https://www.stat.auckland.ac.nz/~yee/VGAM

Added:
  head/math/R-cran-VGAM/
  head/math/R-cran-VGAM/Makefile   (contents, props changed)
  head/math/R-cran-VGAM/distinfo   (contents, props changed)
  head/math/R-cran-VGAM/pkg-descr   (contents, props changed)
Modified:
  head/math/Makefile

Modified: head/math/Makefile
==============================================================================
--- head/math/Makefile	Tue Nov 24 06:21:16 2015	(r402347)
+++ head/math/Makefile	Tue Nov 24 06:22:04 2015	(r402348)
@@ -19,6 +19,7 @@
     SUBDIR += R-cran-RcppEigen
     SUBDIR += R-cran-SparseM
     SUBDIR += R-cran-SuppDists
+    SUBDIR += R-cran-VGAM
     SUBDIR += R-cran-Zelig
     SUBDIR += R-cran-bdsmatrix
     SUBDIR += R-cran-car

Added: head/math/R-cran-VGAM/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/R-cran-VGAM/Makefile	Tue Nov 24 06:22:04 2015	(r402348)
@@ -0,0 +1,17 @@
+# Created by: Wen Heping <wen@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	VGAM
+DISTVERSION=	1.0-0
+CATEGORIES=	math
+DISTNAME=	${PORTNAME}_${DISTVERSION}
+
+MAINTAINER=	wen@FreeBSD.org
+COMMENT=	Vector Generalized Linear and Additive Models
+
+LICENSE=	GPLv2 GPLv3
+LICENSE_COMB=	dual
+
+USES=	cran:auto-plist
+
+.include <bsd.port.mk>

Added: head/math/R-cran-VGAM/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/R-cran-VGAM/distinfo	Tue Nov 24 06:22:04 2015	(r402348)
@@ -0,0 +1,2 @@
+SHA256 (VGAM_1.0-0.tar.gz) = 6acdd7db49c0987c565870afe593160ceba72a6ca4a84e6da3cf6f74d1fa02e1
+SIZE (VGAM_1.0-0.tar.gz) = 2559549

Added: head/math/R-cran-VGAM/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/R-cran-VGAM/pkg-descr	Tue Nov 24 06:22:04 2015	(r402348)
@@ -0,0 +1,8 @@
+An implementation of about 6 major classes of statistical regression
+models.At the heart of it are the vector generalized linear and
+additive model (VGLM/VGAM) classes, and the book "Vector Generalized
+Linear and Additive Models: With an Implementation in R" (Yee, 2015)
+gives details of the statistical framework and VGAM package. Currently
+only fixed-effects models are implemented, i.e., no random-effects models.
+
+WWW: https://www.stat.auckland.ac.nz/~yee/VGAM



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201511240622.tAO6M40B081273>