diff options
author | wen <wen@FreeBSD.org> | 2015-12-18 10:03:44 +0800 |
---|---|---|
committer | wen <wen@FreeBSD.org> | 2015-12-18 10:03:44 +0800 |
commit | 16609c3792369219c7e7f8d3a730479adc39208c (patch) | |
tree | 15e088bedb2bfd4acb03db7997f0c866a90c66c6 | |
parent | c11ba0f1e0e53848a7f7aa8b5bd29ef8ee88129f (diff) | |
download | freebsd-ports-gnome-16609c3792369219c7e7f8d3a730479adc39208c.tar.gz freebsd-ports-gnome-16609c3792369219c7e7f8d3a730479adc39208c.tar.zst freebsd-ports-gnome-16609c3792369219c7e7f8d3a730479adc39208c.zip |
Generalized estimating equations solver for parameters in
mean, scale, and correlation structures, through mean link,
scale link, and correlation link. Can also handle clustered
categorical responses.
WWW: https://cran.r-project.org/web/packages/geepack/
-rw-r--r-- | math/Makefile | 1 | ||||
-rw-r--r-- | math/R-cran-geepack/Makefile | 16 | ||||
-rw-r--r-- | math/R-cran-geepack/distinfo | 2 | ||||
-rw-r--r-- | math/R-cran-geepack/pkg-descr | 6 |
4 files changed, 25 insertions, 0 deletions
diff --git a/math/Makefile b/math/Makefile index b5661a093fec..2f15b5322eaa 100644 --- a/math/Makefile +++ b/math/Makefile @@ -32,6 +32,7 @@ SUBDIR += R-cran-dplyr SUBDIR += R-cran-forecast SUBDIR += R-cran-fracdiff + SUBDIR += R-cran-geepack SUBDIR += R-cran-gpclib SUBDIR += R-cran-gss SUBDIR += R-cran-gtable diff --git a/math/R-cran-geepack/Makefile b/math/R-cran-geepack/Makefile new file mode 100644 index 000000000000..8f3992e2fb03 --- /dev/null +++ b/math/R-cran-geepack/Makefile @@ -0,0 +1,16 @@ +# Created by: Wen Heping <wen@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= geepack +DISTVERSION= 1.2-0 +CATEGORIES= math +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= wen@FreeBSD.org +COMMENT= Generalized Estimating Equation Package + +LICENSE= GPLv3 + +USES= cran:auto-plist + +.include <bsd.port.mk> diff --git a/math/R-cran-geepack/distinfo b/math/R-cran-geepack/distinfo new file mode 100644 index 000000000000..38e0e3f6244f --- /dev/null +++ b/math/R-cran-geepack/distinfo @@ -0,0 +1,2 @@ +SHA256 (geepack_1.2-0.tar.gz) = e4d420e8906eef98ee20f1aba14d5a70b6119725ea7f52ed074425e9b54db0df +SIZE (geepack_1.2-0.tar.gz) = 213737 diff --git a/math/R-cran-geepack/pkg-descr b/math/R-cran-geepack/pkg-descr new file mode 100644 index 000000000000..e3e9ca67bb9b --- /dev/null +++ b/math/R-cran-geepack/pkg-descr @@ -0,0 +1,6 @@ +Generalized estimating equations solver for parameters in +mean, scale, and correlation structures, through mean link, +scale link, and correlation link. Can also handle clustered +categorical responses. + +WWW: https://cran.r-project.org/web/packages/geepack/ |