rk.edit {rkward} | R Documentation |
rk.edit
can be used to edit an object in the
RKWard data editor. Currently only data.frames are
supported. This is similar to edit.data.frame, but
the function returns immediately, and the object is edit
asynchronously.
rk.edit(x) rk.edit.files(file = file, title = file, name = NULL, prompt = TRUE) rk.show.files(file = file, title = file, wtitle = NULL, delete = FALSE, prompt = TRUE) rk.show.html(url)
x |
an object to edit. |
file |
character vector, filenames to show or edit. |
title |
character vector, of the same length as
|
wtitle |
character vector, of length 1. This will be used as the window title. |
prompt |
logical of length 1. If TRUE (the default) a prompt is dialog is shown along with the files to show / edit. |
delete |
a logical (not NA), when |
rk.edit.files
, rk.show.files
, and
rk.show.html
are equivalent to file.edit,
file.show, and browseURL, respectively, but
use RKWard as text/html editor/viewer. Generally it is
recommended to use file.edit, file.show,
and browseURL, instead. These will call the
respective RKWard functions by default, when run inside
an RKWard session.
All functions described on this page return NULL
,
unconditionally.
Thomas Friedrichsmeier rkward-devel@lists.sourceforge.net
edit
, file.edit
,
file.show
, browseURL
## Not run x <- data.frame (a=c(1:3), b=c(2:4)) rk.edit(x)