diff options
author | wen <wen@FreeBSD.org> | 2016-09-30 14:24:27 +0800 |
---|---|---|
committer | wen <wen@FreeBSD.org> | 2016-09-30 14:24:27 +0800 |
commit | a9153246679310e9b065094397f7acd3ca2fc48b (patch) | |
tree | c496b44d24bf3c8aca785cd8c9ce440458548e55 /math | |
parent | 9a1556ec82053fbecbbb42fd2f1d6961ee0ce46a (diff) | |
download | freebsd-ports-gnome-a9153246679310e9b065094397f7acd3ca2fc48b.tar.gz freebsd-ports-gnome-a9153246679310e9b065094397f7acd3ca2fc48b.tar.zst freebsd-ports-gnome-a9153246679310e9b065094397f7acd3ca2fc48b.zip |
Density, distribution function, quantile function, random generation
and expected value function for the truncated normal distribution
with mean equal to 'mean' and standard deviation equal to 'sd'.
WWW: http://cran.r-project.org/web/packages/truncnorm/
PR: 213091
Submitted by: pfg@
Diffstat (limited to 'math')
-rw-r--r-- | math/Makefile | 1 | ||||
-rw-r--r-- | math/R-cran-truncnorm/Makefile | 16 | ||||
-rw-r--r-- | math/R-cran-truncnorm/distinfo | 3 | ||||
-rw-r--r-- | math/R-cran-truncnorm/pkg-descr | 5 |
4 files changed, 25 insertions, 0 deletions
diff --git a/math/Makefile b/math/Makefile index a0a50aa70270..537e86e0803d 100644 --- a/math/Makefile +++ b/math/Makefile @@ -66,6 +66,7 @@ SUBDIR += R-cran-sspir SUBDIR += R-cran-stabledist SUBDIR += R-cran-survey + SUBDIR += R-cran-truncnorm SUBDIR += R-cran-xts SUBDIR += R-cran-zoo SUBDIR += aamath diff --git a/math/R-cran-truncnorm/Makefile b/math/R-cran-truncnorm/Makefile new file mode 100644 index 000000000000..e98568dcb5be --- /dev/null +++ b/math/R-cran-truncnorm/Makefile @@ -0,0 +1,16 @@ +# Created by: Pedro Giffuni +# $FreeBSD$ + +PORTNAME= truncnorm +DISTVERSION= 1.0-7 +CATEGORIES= math +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= pfg@FreeBSD.org +COMMENT= Truncated normal distribution + +LICENSE= GPLv2 + +USES= cran:auto-plist + +.include <bsd.port.mk> diff --git a/math/R-cran-truncnorm/distinfo b/math/R-cran-truncnorm/distinfo new file mode 100644 index 000000000000..c21b23d76f1e --- /dev/null +++ b/math/R-cran-truncnorm/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1475192353 +SHA256 (truncnorm_1.0-7.tar.gz) = c7d775d09e2dcbcc543c03a207b4407b8548b5fdfeb4c017f12818507e014ce1 +SIZE (truncnorm_1.0-7.tar.gz) = 9909 diff --git a/math/R-cran-truncnorm/pkg-descr b/math/R-cran-truncnorm/pkg-descr new file mode 100644 index 000000000000..e579ec5a61ea --- /dev/null +++ b/math/R-cran-truncnorm/pkg-descr @@ -0,0 +1,5 @@ +Density, distribution function, quantile function, random generation +and expected value function for the truncated normal distribution +with mean equal to 'mean' and standard deviation equal to 'sd'. + +WWW: http://cran.r-project.org/web/packages/truncnorm/ |