search for: resubstituteparam

Displaying 1 result from an estimated 1 matches for "resubstituteparam".

Did you mean: resubstituteparams
2015 Feb 20
1
save.image Doesn't Save Objects When Browsing
The documentation states that "save.image() is just a short-cut for save(list = ls(all = TRUE), file = ".RData")". However, if I do Browse[1]> ls(all=TRUE) [1] "expression" "orderedFeatures" "predictParams" [4] "resubstituteParams" "trainParams" "verbose" Browse[1]> save.image("BROWSE.RData") load("BROWSE.RData") shows different variables than ls() did. Explicitly typing Browse[1]> save(list = ls(all = TRUE), file = ".RData") causes the variables in the...