Some clarifications and additional data on this bug:
- this has nothing to do with Rtools as such, but applies to finding
any executable with 'Sys.which' that happens to live in a path with
more than 96 characters;
- the issue also occurs when using the 32-bit version of RGui
on Windows 7 6
Duncan Murdoch writes:
> On 09/05/2014, 6:54 AM, Rainer M Krug wrote:
>>
>> How can I access an object in an attached but deleted environment, when
>> the object also exists in the .GolbalEnv?
>
> Attaching a variable to the search list generally makes a copy of it,
> so it can't be "attached but
On 09/05/2014, 6:54 AM, Rainer M Krug wrote:
How can I access an object in an attached but deleted environment, when
the object also exists in the .GolbalEnv?
Attaching a variable to the search list generally makes a copy of it, so
it can't be "attached but deleted". However, "making a copy"
How can I access an object in an attached but deleted environment, when
the object also exists in the .GolbalEnv?
I hope the example below makes the question clear:
--8<---cut here---start->8---
tmp <- attach(what=NULL, name="org:variables")
tmp$test = 13
rm(t