search for: bigzoo

Displaying 1 result from an estimated 1 matches for "bigzoo".

Did you mean: bigloo
2008 Jan 08
1
Error with rbind and zoo
...][11],".",fixed=T)[[1]][1] a <- rep(quotedate, nrow(y)) y <- zoo(y,a) } return(y) } I now have a list of zoo'd files. Each of them is indexed by a date which is unique. All fine so far. Now, I want to combine all of these into one large zoo object. So I say ------ bigzoo <- do.call(rbind, res) I now get an error .... "rbind(...): indexes overlap"... I am now wondering how? Because when I do the foll ----- for (i in 1:length(res)) {cat(i," ",unique(index(res[i][[1]])),"\n")} I see that I have unique indexes for each res.... So why...