So I have code for a custom function in R, e.g. simply:
f <- function(x) return(x)
What I want to do is be able to call this function f
as if it came with default R. That is, I don't want to have to source()
the file containing the code to be able to use the function. Is there a way to accomplish this?