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(name = NULL, file = "", title = NULL, prompt = TRUE) rk.show.files(file = file, header = file, title = NULL, delete.file = FALSE, prompt = TRUE, delete = delete.file) 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 |
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 |
wtitle |
character vector, of length 1. This will be used as the window title. |
rk.edit.files
, rk.show.files
, and rk.show.html
are
equivalent to edit, file.show, and browseURL,
respectively, but use RKWard as text/html editor/viewer. Generally it is
recommended to use edit, file.edit, file.show,
and browseURL, instead. These will call the respective RKWard functions
by default, when run inside an RKWard session. (via getOption("editor")
,
and getOption("browser")
.
All functions described on this page return NULL
,
unconditionally.
Thomas Friedrichsmeier rkward-devel@kde.org
edit
, file.edit
,
file.show
, browseURL
## Not run x <- data.frame (a=c(1:3), b=c(2:4)) rk.edit(x)