rk.edit {rkward} | R Documentation |
rk.edit(x) rk.edit.files(file = file, title = file, name = NULL) rk.show.files(file = file, title = file, wtitle = NULL, delete = FALSE) 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 file ; This can be used to give descriptive titles to each file, which will be displayed to the user. |
wtitle |
character vector, of length 1. This will be used as the window title. |
delete |
a logical (not NA), when TRUE the shown file(s) are deleted after closing. |
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.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)