diff options
author | wen <wen@FreeBSD.org> | 2015-11-24 14:22:04 +0800 |
---|---|---|
committer | wen <wen@FreeBSD.org> | 2015-11-24 14:22:04 +0800 |
commit | 88fdbf1a80c9d028cd1af0e3ecf5c7cb5cf2a486 (patch) | |
tree | 2e9f9cb4a03da576cf8eb2ea2538247516ba4729 /math | |
parent | aa3505d49febfafd769f3b3cef0bf683ea93c1b1 (diff) | |
download | freebsd-ports-gnome-88fdbf1a80c9d028cd1af0e3ecf5c7cb5cf2a486.tar.gz freebsd-ports-gnome-88fdbf1a80c9d028cd1af0e3ecf5c7cb5cf2a486.tar.zst freebsd-ports-gnome-88fdbf1a80c9d028cd1af0e3ecf5c7cb5cf2a486.zip |
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
Diffstat (limited to 'math')
-rw-r--r-- | math/Makefile | 1 | ||||
-rw-r--r-- | math/R-cran-VGAM/Makefile | 17 | ||||
-rw-r--r-- | math/R-cran-VGAM/distinfo | 2 | ||||
-rw-r--r-- | math/R-cran-VGAM/pkg-descr | 8 |
4 files changed, 28 insertions, 0 deletions
diff --git a/math/Makefile b/math/Makefile index ae791e95c61c..6a10ded1282d 100644 --- a/math/Makefile +++ b/math/Makefile @@ -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 diff --git a/math/R-cran-VGAM/Makefile b/math/R-cran-VGAM/Makefile new file mode 100644 index 000000000000..d8daee3822fe --- /dev/null +++ b/math/R-cran-VGAM/Makefile @@ -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> diff --git a/math/R-cran-VGAM/distinfo b/math/R-cran-VGAM/distinfo new file mode 100644 index 000000000000..4687ae1bb1b6 --- /dev/null +++ b/math/R-cran-VGAM/distinfo @@ -0,0 +1,2 @@ +SHA256 (VGAM_1.0-0.tar.gz) = 6acdd7db49c0987c565870afe593160ceba72a6ca4a84e6da3cf6f74d1fa02e1 +SIZE (VGAM_1.0-0.tar.gz) = 2559549 diff --git a/math/R-cran-VGAM/pkg-descr b/math/R-cran-VGAM/pkg-descr new file mode 100644 index 000000000000..f28a42fd99a5 --- /dev/null +++ b/math/R-cran-VGAM/pkg-descr @@ -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 |