Let's say we have the following function:
foo <- function(x)
{
line1 <- x
line2 <- 0
line3 <- line1 + line2
return(line3)
}
And that we want to change the second line to be:
line2 <- 2
How would you do that?
One way is to use
fix(foo)
And change the function.
Another way is to just write the function again.
Is there another way? (Remember, the task was to change just the second line)
What I would like is for some way to represent the function as a vector of strings (well, characters), then change one of it's values, and then turn it into a function again.
fixInNamespace
is likefix
, for functions in a package (including those that haven't been exported).(The "{" is body(foo)[[1]] and each line is a successive element of the list.)
Or take a look at the debugging function
trace()
. It is probably not exactly what you are looking for but it lets you play around with the changes and it has the nice feature that you can always go back to your original function withuntrace()
.trace()
is part of thebase
package and comes with a nice and thorough help page.Start by calling
as.list (body(foo))
to see all the lines of your code.Then you simply define what to add to your function and where to place it by defining the arguments in
trace()
.I said in the beginning that
trace()
might not be exactly what you are looking for since you didn't really change your third line of code and instead simply reassigned the value to the objectline2
in the following, inserted line of code. It gets clearer if you print out the code of your now traced functionYou can use the 'body' function. This function will return the body of function:
So a good way to 'edit' a function is to use 'body' on the left-hand side of an assignment statement:
fix
is the best way that I know of doing this, although you can also useedit
and re-assign it:This is what
fix
does internally. You might want to do this if you wanted to re-assign your changes to a different name.