This help topic is for R version 1.5.0. For the current version of R, try https://stat.ethz.ch/R-manual/R-patched/library/base/html/fix.html
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 user's workspace.

Usage

fix(x, ...)

Arguments

x

an R object.

...

arguments to pass to editor.

See Also

edit, edit.data.frame

Examples

## Not run: 
 ## Assume  `my.fun' is a user defined function :
 fix(my.fun)
 ## now my.fun is changed
 ## Also,
 fix(my.data.frame) # calls up data editor
 fix(my.data.frame, factor.mode="char") # use of ...

## End(Not run)


[Package base version 1.5.0 ]