I’m developing an R package, and I’d like to set some function aliases, e.g. if I have defined a function named foo, I’d like it to be available under bar symbol too. Note that I’m aware of @alias tag, but that’s not what I want. Should I create a new file (probably aliases.R) and put all aliases there?
I’m developing an R package, and I’d like to set some function aliases, e.g.
Share
You could just define
barwhen you definefoo.