diff options
author | minskim <minskim@pkgsrc.org> | 2018-02-03 01:15:17 +0000 |
---|---|---|
committer | minskim <minskim@pkgsrc.org> | 2018-02-03 01:15:17 +0000 |
commit | abf222a5fe413b4f1e768ea78e8a531a0a3e6cfc (patch) | |
tree | 7be6ae7b27c9b559517eb346af0d63f4dab74eb5 | |
parent | 64be6a0d86aacaf21460375a144ea094996541d0 (diff) | |
download | pkgsrc-abf222a5fe413b4f1e768ea78e8a531a0a3e6cfc.tar.gz |
math/R-zoo: Update to 1.8.1
Changes:
o New .DollarNames method (contributed by Josh Ulrich) to enable tab
completion when using zoo_object$...
o New default method for zoo::as.Date() that simply dispatches to
base::as.Date().
o rollapply(x, k, FUN, align = "right") lead to an error if length(x) < k.
This has been corrected to match the behavior of the other align types.
o rollmean(), rollsum(), rollmedian(), and rollmax() no longer throw an
error if the series is shorter than the window size. Instead rollapply()
is called which either returns an empty series (if "fill" is not specified)
or a padded series (if "fill" is specified, e.g., to NA).
o read.zoo() now also handles "tbl" objects by coercing them to proper
"data.frame"s first. Also gained a read = read.table argument to simplify
convenience interfaces read.csv.zoo() etc.
o The fortify() method gained a "names" argument so that the column names
of the (melted) series can be modified.
-rw-r--r-- | math/R-zoo/Makefile | 5 | ||||
-rw-r--r-- | math/R-zoo/distinfo | 10 |
2 files changed, 8 insertions, 7 deletions
diff --git a/math/R-zoo/Makefile b/math/R-zoo/Makefile index 11df6c74e40..44d5254fb2d 100644 --- a/math/R-zoo/Makefile +++ b/math/R-zoo/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.10 2017/12/02 10:58:52 wen Exp $ +# $NetBSD: Makefile,v 1.11 2018/02/03 01:15:17 minskim Exp $ CATEGORIES= math MASTER_SITES= ${MASTER_SITE_R_CRAN:=contrib/} @@ -9,7 +9,8 @@ COMMENT= S3 Infrastructure for Regular and Irregular Time Series LICENSE= gnu-gpl-v2 OR gnu-gpl-v3 R_PKGNAME= zoo -R_PKGVER= 1.8-0 +R_PKGVER= 1.8-1 +BUILDLINK_API_DEPENDS.R+= R>=2.10.0 .include "../../math/R/Makefile.extension" .include "../../mk/bsd.pkg.mk" diff --git a/math/R-zoo/distinfo b/math/R-zoo/distinfo index 7454da8fbc1..2ac4977cfe6 100644 --- a/math/R-zoo/distinfo +++ b/math/R-zoo/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.11 2017/12/02 10:58:52 wen Exp $ +$NetBSD: distinfo,v 1.12 2018/02/03 01:15:17 minskim Exp $ -SHA1 (R/zoo_1.8-0.tar.gz) = 1d9def97f316bcf28e4cbd426e31fe7998578c88 -RMD160 (R/zoo_1.8-0.tar.gz) = 30fb4ae5f2530f665aac716369604a45b0feb350 -SHA512 (R/zoo_1.8-0.tar.gz) = 04e95d100520cd8edf3b33bfcb34410a5269014c72db27cbf21ea5836d30125e2fde9e51956087e798143d4ac1169a1ebd5769a8b6c79d45bbfbf28f5f91260b -Size (R/zoo_1.8-0.tar.gz) = 839729 bytes +SHA1 (R/zoo_1.8-1.tar.gz) = 167c080b75faba78f44562c978aeb33ff6825b70 +RMD160 (R/zoo_1.8-1.tar.gz) = 369bf15f07275e8d015165f83cef5e63f6ef4dcc +SHA512 (R/zoo_1.8-1.tar.gz) = a0b2818d678b295431090ccbccac6bc991a28182074b8a5079debb673d4cd999a12f3e4387d87093f6630d68d886b31efa098c25524988de133496e2e204213d +Size (R/zoo_1.8-1.tar.gz) = 852331 bytes |