.R in the etc subdirectory
of the package. Add menus, submenus, and menu items by editing the file
Rcmdr-menus.txt in the same directory.activeDataSet(dsname)
activeModel(model)
doItAndPrint(command)
justDoIt(command)
is.valid.name(x)
listDataSets(envir = .GlobalEnv, ...)
listGeneralizedLinearModels(envir = .GlobalEnv, ...)
listLinearModels(envir = .GlobalEnv, ...)
logger(command)doItAndPrint, justDoIt, and logger control the
execution, logging, and printing of commands generated by menus and dialogs.
logger(command) adds command to the log window and, with the pseudo-prompt
R-cmdr>, to the R session window. justDoIt(command) causes command
to be executed. doItAndPrint(command) does both of these operations.
The function is.valid.name checks whether a character string specifies a valid name
for an R object, returning TRUE or FALSE.
The other functions are self-explanatory.