Skip to content
Prev 3311 / 15274 Next

Concatenating time series objects?

Hi Marc,

rbind and cbind are particularly difficult in R.

They are not true generic functions, but rather calls to .Internal
code.  This mean that the dispatch is very ... different :)

You can try calling rbind.xts directly -- that may indeed solve your problem.

This issue has been addressed in the new xts, which is being prepared
for release as I type this.  Basically I have added custom xts code (C
code) to bypass the dispatching quirks that arise from the entire
rbind->rbind.xts->rbind.zoo calling structure.

Again, the look and feel of zoo will remain intact, but the underlying
code is going to be different.  Precisely to address issues like this
that have been arising.

Jeff
On Tue, Dec 2, 2008 at 12:48 AM, Marc Delvaux <mdelvaux at gmail.com> wrote: