An S3 class with methods for totally ordered indexed observations. It
vectors/matrices and factors. Zoo's key design goals are independence
2023-06-01 14:38:02 by Makoto Fujiwara | Files touched by this commit (2) |
Log message:
(math/R-zoo) Updated 1.8.11 to 1.8.12
Changes in Version 1.8-12
o The autoplot() method for "zoo" objects now uses ggplot() directly \
rather
than the qplot() function which has been deprecated in recent versions of
ggplot2.
o Support start = NA and end = NA in addition to start = NULL and end = NULL
for unspecified start and end time of a window() of a zoo series.
o Remove unnecessary S3 method declarations for axis.yearmon/yearqtr as
axis() is no S3 generic, only Axis() is (reported by Kurt Hornik).
o The helper function index2char() now calls format() instead of as.character()
for objects inheriting from class POSIXt.
|
2022-12-18 13:57:14 by Makoto Fujiwara | Files touched by this commit (2) |
Log message:
(math/R-zoo) Updated 1.8.10 to 1.8.11
Changes in Version 1.8-11
o The as.ts() methods for both "zoo" and "zooreg" objects \
now allow to pass on
the fill argument (through ...) to the underlying merge() call. Thus, you can
say as.ts(z, fill = 0) to fill potential gaps with 0s instead of NAs.
o The na.spline() method for "ts" objects had been provided \
internally in the
package but has only been correctly registered in the NAMESPACE now.
o The merge() method gained a sep = "." argument to optionally use a \
different
separator character when making pasting suffixes to column names for making
them unique (suggested by Joshua Ulrich).
o The MATCH() methods for Date/POSIXct/POSIXlt object now coerce the \
"table"
argument (if necessary) to Date or POSIXct, respectively, before calling
match(unclass(x), unclass(table), ...) internally.
o In case of a Date/POSIXct/POSIXlt "table" and a plain atomic \
argument "x",
the default MATCH() method coerces "x" to Date or POSIXct, \
respectively,
before calling match(unclass(x), unclass(table), ...) internally.
o As the "fts" package has been archived on CRAN for several months, \
it has been
excluded from the Suggests of the package. The as.zoo() method for \
"fts"
objects continues to be part of the package, though, just the hyperlinks in
the documentation have been removed.
|
2022-05-23 13:48:04 by Makoto Fujiwara | Files touched by this commit (2) |
Log message:
(math/R-zoo) Updated 1.8.9 to 1.8.10
Changes in Version 1.8-10
o The transform() method now internally uses a list of zoo series (as opposed
to a data.frame of numeric variables, as used in previous versions). This
means that the transformations can really operate on full zoo series.
o Added MATCH() methods for classes "Date", "POSIXct", and \
"POSIXlt", all
of which essentially match the underlying numeric vector (suggested by
Kurt Hornik).
o In zooreg() the "ts.eps" argument is now also used (in squares) as the
tolerance in the all.equal() comparisons used to determine the underlying
regular time grid.
|
2021-10-26 12:56:13 by Nia Alarie | Files touched by this commit (458) |
Log message:
math: Replace RMD160 checksums with BLAKE2s checksums
All checksums have been double-checked against existing RMD160 and
SHA512 hashes
|
2021-10-07 16:28:36 by Nia Alarie | Files touched by this commit (458) |
Log message:
math: Remove SHA1 hashes for distfiles
|
2021-06-06 17:08:57 by Makoto Fujiwara | Files touched by this commit (2) |
Log message:
(math/R-zoo) Updated 1.8.6 to 1.8.9
Changes in Version 1.8-9
o Added a basic boxplot(x, ...) method for zoo objects that simply calls
boxplot(coredata(x), ...).
o Bug fix in [.zoo and [<-.zoo where indexing with matrices did not
work correctly anymore in R 4.x.y because "matrix" objects now \
additionally
inherit from "array" objects. (Reported by Bill Cunliffe.)
o Improved internal functionality in na.spline.default() in the same way
na.approx.default() was enhanced in zoo 1.7-14 and 1.7-13. One difference
is that while na.approx() requires at least two non-NA observations,
na.spline() just needs one non-NA observation (using a constant to
interpolate in that case).
o If the FUN in rollapply() returns a matrix or data.frame with more than
one row per element/time point, then this is flattened now so that the
result is again a matrix with one row per element/time point.
o merge.zoo() now handles the case of all indexes being integer or numeric
by coercing the integer indexes to numeric (reported by Simone Giannerini).
o zooreg(x) now allows to create an integer index if start (and end, if any)
are integer and the implied deltat is not numerically different from an
integer value.
Changes in Version 1.8-8
o diff.zoo(x, arithmetic = FALSE) now also works if x contains negative
data.
o merge.zoo() now handles the combination of Date and numeric indexes
explicitly to work around the new behavior of c.Date() in R >= 4.1.0.
Changes in Version 1.8-7
o Added scale_type() methods for yearmon/yearqtr to facilitate ggplot2
visualizations of zoo series with yearmon/yearqtr time index (suggested
by Brian Diggs). This requires at least ggplot2 3.0.0.
o In merge.zoo() "character" columns are now processed in the same way
as "logical" columns.
o Replaced the "fruitohms" example in the "zoo" vignette \
because the
corresponding "DAAG" package is not actively maintained on CRAN \
anymore.
Instead the "Journals" data from the "AER" package is used.
|
2019-08-08 21:53:58 by Brook Milligan | Files touched by this commit (189) | |
Log message:
Update all R packages to canonical form.
The canonical form [1] of an R package Makefile includes the
following:
- The first stanza includes R_PKGNAME, R_PKGVER, PKGREVISION (as
needed), and CATEGORIES.
- HOMEPAGE is not present but defined in math/R/Makefile.extension to
refer to the CRAN web page describing the package. Other relevant
web pages are often linked from there via the URL field.
This updates all current R packages to this form, which will make
regular updates _much_ easier, especially using pkgtools/R2pkg.
[1] http://mail-index.netbsd.org/tech-pkg/2019/08/02/msg021711.html
|
2018-08-30 14:19:26 by Wen Heping | Files touched by this commit (2) |
Log message:
Update to 1.8.3
|