fix {base} | R Documentation |
Fix an Object
Description
fix
invokes the editor specified in
options("editor")
on x
and then assigns the new
(edited) version of x
in the global environment.
Usage
fix(x)
Arguments
x |
An R object |
Examples
## Not run:
## Assume `my.fun' is a user defined function :
fix(my.fun)
## now my.fun is changed
## End(Not run)