Displaying 4 results from an estimated 4 matches for "lvsave".
Did you mean:
vsave
1997 Sep 02
1
R-alpha: R interaction within ESS-4.9-b11: two small issues
...der the present
structure you must require essd-s+3 to get definitions of some
functions used by the other dialects. Perhaps that dependency could
be removed at some time.
2) I think the current definitions
essd-r.el:61: (ess-retr-lastvalue-command . ".Last.value <- get(\"smode.lvsave\",envir=1)\n")
essd-r.el:62: (ess-save-lastvalue-command . "assign(\"smode.lvsave\",.Last.value,envir=1)\n")
may be misusing the "envir" argument. I am getting messages in the
interaction window like
> Error in get(x, envir, mode, inherits) : varia...
2002 Aug 07
1
ESS assigns .Last.value to the wrong place in R
...ESS makes a copy of .Last.value in the .GlobalEnv,
which is *not* where R normally stores it (R stores it in package:base).
When this copy becomes stale it leads to wrong answers. The bug is in
essd-r.el, lines 63-64:
(ess-retr-lastvalue-command
. ".Last.value <- get(\".ess.lvsave\",inherits=TRUE)\n") ; envir=1
which should be changed (as I have done on my machine) to:
(ess-retr-lastvalue-command
. "assign(\".Last.value\", .ess.lvsave, envir=NULL)\n") ; package:base
Here's an example of how things can go wrong:
R> find("....
2001 Jul 17
0
bug in the interface of ESS, R for linux, S+6 for linux (PR#1028)
Object name completion doesn't work on linux. On S+6 the problem
seems to be that ESS uses the argument `inherits' and S+6 is expecting
`inherit'
. ".Last.value <- get(\".ess.lvsave\",inherits=T)\n") ; envir=1
. "assign(\".ess.lvsave\",.Last.value,inherits=T)\n") ;envir=1
-rw-r--r-- 1 544 everyone 7170 Mar 1 13:55 essd-r.el
and
Version 6.0 Release 1 for Linux 2.2.12 : 2000
args(get)
function(name, where = NULL, frame, inher...
2007 Oct 30
1
postscript(), used from a pre R-2.6.0 workspace
I find that if start R-2.6.0 in a workspace with no .RData file,
load one of my workspaces from R-2.5.1 or earlier into R-2.6.0,
and then before doing anything else type postscript(file="z.ps"),
I get::
> ls()
character(0)
> load(url("http://www.maths.anu.edu.au/~johnm/r/test5.RData"))
> postscript(file="z.ps")
Error in postscript(file = "z.ps")