[R] base:::rbind

Gabor Grothendieck ggrothendieck at gmail.com
Thu Nov 27 03:14:01 CET 2008


timeSeries is calling methods:::bind_activation.

You can turn this off and on yourself with:

methods:::bind_activation(FALSE)
methods:::bind_activation(TRUE)

See ?cbind2


On Wed, Nov 26, 2008 at 9:00 PM, Fernando Saldanha <fsaldan1 at gmail.com> wrote:
> 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 at 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.
>



More information about the R-help mailing list