[R] base:::rbind

Fernando Saldanha fsaldan1 at gmail.com
Thu Nov 27 03:00:13 CET 2008


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



More information about the R-help mailing list