From owner-svn-ports-all@freebsd.org Tue Nov 24 06:22:05 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B9E3CA365B8; Tue, 24 Nov 2015 06:22:05 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 79C181A85; Tue, 24 Nov 2015 06:22:05 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tAO6M4Cw081277; Tue, 24 Nov 2015 06:22:04 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tAO6M40B081273; Tue, 24 Nov 2015 06:22:04 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201511240622.tAO6M40B081273@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Tue, 24 Nov 2015 06:22:04 +0000 (UTC) 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 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Nov 2015 06:22:05 -0000 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 +# $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 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