diff options
author | TAKATSU Tomonari <tota@FreeBSD.org> | 2015-11-15 15:07:08 +0000 |
---|---|---|
committer | TAKATSU Tomonari <tota@FreeBSD.org> | 2015-11-15 15:07:08 +0000 |
commit | a1115fe7cd7ffa2d06f9b86b1fddae6759228ccd (patch) | |
tree | bbcd8139392dafef7b587fca71001bc161ffbbd3 | |
parent | Unbreak the build on PowerPC, in a simple way: replace deprecated __sync_* (diff) |
- Add new port: math/R-cran-pbkrtest
Test in linear mixed effects models. Attention is on linear mixed
effects models as implemented in the lme4 package. The package
implements a parametric bootstrap test. The package implements a
Kenward-Roger modification of F-tests.
WWW: https://cran.r-project.org/web/packages/pbkrtest/
Notes
Notes:
svn path=/head/; revision=401708
-rw-r--r-- | math/Makefile | 1 | ||||
-rw-r--r-- | math/R-cran-pbkrtest/Makefile | 19 | ||||
-rw-r--r-- | math/R-cran-pbkrtest/distinfo | 2 | ||||
-rw-r--r-- | math/R-cran-pbkrtest/pkg-descr | 6 |
4 files changed, 28 insertions, 0 deletions
diff --git a/math/Makefile b/math/Makefile index 8bc4bd1457eb..29418be442a0 100644 --- a/math/Makefile +++ b/math/Makefile @@ -39,6 +39,7 @@ SUBDIR += R-cran-nloptr SUBDIR += R-cran-nnls SUBDIR += R-cran-outliers + SUBDIR += R-cran-pbkrtest SUBDIR += R-cran-psych SUBDIR += R-cran-quadprog SUBDIR += R-cran-sandwich diff --git a/math/R-cran-pbkrtest/Makefile b/math/R-cran-pbkrtest/Makefile new file mode 100644 index 000000000000..51cbfddd637f --- /dev/null +++ b/math/R-cran-pbkrtest/Makefile @@ -0,0 +1,19 @@ +# Created by: TAKATSU Tomonari <tota@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= pbkrtest +DISTVERSION= 0.4-2 +CATEGORIES= math +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Parametric bootstrap and Kenward-Roger-based methods for mixed model comparison + +LICENSE= GPLv2 GPLv3 +LICENSE_COMB= dual + +RUN_DEPENDS= R-cran-lme4>0:${PORTSDIR}/math/R-cran-lme4 + +USES= cran:auto-plist + +.include <bsd.port.mk> diff --git a/math/R-cran-pbkrtest/distinfo b/math/R-cran-pbkrtest/distinfo new file mode 100644 index 000000000000..1d0d174a833c --- /dev/null +++ b/math/R-cran-pbkrtest/distinfo @@ -0,0 +1,2 @@ +SHA256 (pbkrtest_0.4-2.tar.gz) = c5abf8dc5e90e3f448213bdbf2815b3906a21f845206ab4d378366a488b8f7fa +SIZE (pbkrtest_0.4-2.tar.gz) = 163079 diff --git a/math/R-cran-pbkrtest/pkg-descr b/math/R-cran-pbkrtest/pkg-descr new file mode 100644 index 000000000000..ffaf4437dc9f --- /dev/null +++ b/math/R-cran-pbkrtest/pkg-descr @@ -0,0 +1,6 @@ +Test in linear mixed effects models. Attention is on linear mixed +effects models as implemented in the lme4 package. The package +implements a parametric bootstrap test. The package implements a +Kenward-Roger modification of F-tests. + +WWW: https://cran.r-project.org/web/packages/pbkrtest/ |