I'm quite an R newbie, so apologizes if mine is a simple question. I have many R scripts that use the base merge function. Yesterday, I had to install the config library and that completely screwed up the merge function since it's also defined inside congif. I read this useful post: R - can't merge dataframe after installing config package but my question here is different. I can't go through tens of R scripts and replace "merge()" with "base::merge()".
So my very simple question is the following and very similar to what discussed here: R: 2 functions with the same name in 2 different packages
how can I specify to use the "base::" version of the function "merge()" as default one? Or - is there a way to not install the "merge()" function contained inside the config package? Many thanks