| iNZight {iNZight} | R Documentation |
Starts iNZight, optionally with data and a dispose function.
For example, a script called to open iNZight can automatically
exit R once the iNZight session is complete using q() (see examples).
iNZight(data = NULL, dispose_fun = NULL, ...)
data |
a data frame |
dispose_fun |
called when the iNZight GUI is closed |
... |
arguments passed to |
invisibly returns the iNZGUI object
Marco Kuper, Tom Elliott
## Not run: # to have iNZight quit R without saving after the session is over, # you may use the following: iNZight(dispose_fun = q, save = "n") ## End(Not run)