It seems that after loading the package timeSeries the function
base:::rbind is replaced by methods:::rbind

> identical(base:::rbind, methods:::rbind)
[1] FALSE
> rbb = base:::rbind
> library(timeSeries)
Loading required package: timeDate
> identical(base:::rbind, methods:::rbind)
[1] TRUE
> identical(rbb, base:::rbind)
[1] FALSE

Is there a way to access the original function base:::rbind after
loading timeSeries?

I am runing R 2.8.0 under Vista Home Premium.

Thanks for any help.

FS

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to