Displaying 1 result from an estimated 1 matches for "optiondb_add".
2010 Aug 24
1
save() object w/o all of the loaded environment
.... Unfortunately,
any attempt to load the object (in a fresh R session) fails as below.
R> library(SC)
R> setwd("/path/to/results/")
R> load("sc-results.rda")
Loading Tcl/Tk interface ... done
Error: .onLoad failed in loadNamespace() for 'SCUI', details:
call: optiondb_add("*Notebook.borderWidth", 2, "widgetDefault")
error: could not find function "tcl"
That call (which adds resource to Tcl resource database) is made
inside SCUI. Loading tcltk package removes the problem.
R> library(tcltk)
R> load("sc-results.rda")
R&...