diff options
author | tota <tota@FreeBSD.org> | 2011-08-31 05:14:29 +0800 |
---|---|---|
committer | tota <tota@FreeBSD.org> | 2011-08-31 05:14:29 +0800 |
commit | b3000652e81c3025783fafb5cacbe54a964452f8 (patch) | |
tree | 661b10254bc33cd673ac13b086330c3eb07ca9c8 /math | |
parent | e3aea5ae262df88d2d205ca57cf91c047c354ba2 (diff) | |
download | freebsd-ports-gnome-b3000652e81c3025783fafb5cacbe54a964452f8.tar.gz freebsd-ports-gnome-b3000652e81c3025783fafb5cacbe54a964452f8.tar.zst freebsd-ports-gnome-b3000652e81c3025783fafb5cacbe54a964452f8.zip |
- Add a new port: math/R-cran-zoo
An S3 class with methods for totally ordered indexed observations.
It is particularly aimed at irregular time series of numeric
vectors/matrices and factors. zoo's key design goals are independence
of a particular index/date/time class and consistency with ts and
base R by providing methods to extend standard generics.
WWW: http://zoo.r-forge.r-project.org/
Diffstat (limited to 'math')
-rw-r--r-- | math/Makefile | 1 | ||||
-rw-r--r-- | math/R-cran-zoo/Makefile | 22 | ||||
-rw-r--r-- | math/R-cran-zoo/distinfo | 2 | ||||
-rw-r--r-- | math/R-cran-zoo/pkg-descr | 7 |
4 files changed, 32 insertions, 0 deletions
diff --git a/math/Makefile b/math/Makefile index e99f29de6659..cd29add6b4ff 100644 --- a/math/Makefile +++ b/math/Makefile @@ -17,6 +17,7 @@ SUBDIR += R-cran-psych SUBDIR += R-cran-sm SUBDIR += R-cran-sp + SUBDIR += R-cran-zoo SUBDIR += aamath SUBDIR += abakus SUBDIR += abs diff --git a/math/R-cran-zoo/Makefile b/math/R-cran-zoo/Makefile new file mode 100644 index 000000000000..532dde95ca12 --- /dev/null +++ b/math/R-cran-zoo/Makefile @@ -0,0 +1,22 @@ +# New ports collection makefile for: R-cran-zoo +# Date created: 2011-08-16 +# Whom: TAKATSU Tomonari <tota@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= zoo +DISTVERSION= 1.7-3 +CATEGORIES= math +PKGNAMEPREFIX= R-cran- +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= S3 Infrastructure for Regular and Irregular Time Series + +LICENSE= GPLv2 + +USE_R_MOD= yes +R_MOD_AUTOPLIST= yes + +.include <bsd.port.mk> diff --git a/math/R-cran-zoo/distinfo b/math/R-cran-zoo/distinfo new file mode 100644 index 000000000000..8c18577aa66e --- /dev/null +++ b/math/R-cran-zoo/distinfo @@ -0,0 +1,2 @@ +SHA256 (zoo_1.7-3.tar.gz) = 522381a9eab0052b2af4786bf7f6a9e48993cbad50c3bc2b02c92804dfd9c647 +SIZE (zoo_1.7-3.tar.gz) = 1207413 diff --git a/math/R-cran-zoo/pkg-descr b/math/R-cran-zoo/pkg-descr new file mode 100644 index 000000000000..eece439de50f --- /dev/null +++ b/math/R-cran-zoo/pkg-descr @@ -0,0 +1,7 @@ +An S3 class with methods for totally ordered indexed observations. +It is particularly aimed at irregular time series of numeric +vectors/matrices and factors. zoo's key design goals are independence +of a particular index/date/time class and consistency with ts and +base R by providing methods to extend standard generics. + +WWW: http://zoo.r-forge.r-project.org/ |