Please don't post to multiple lists (it is regarded as discourteous,
at the least)! R-sig-db (which you did not post to) would have been
appropriate, after asking the maintainer (see the posting guide).
On Fri, 16 Jul 2010, Steven McKinney wrote:
I think this is a question for R-devel so I'm
I think this is a question for R-devel so I'm
cross-posting there with apologies.
I've just acquired a Windows 7 64-bit box and
also will need RMySQL eventually.
Is there any information about issues involved
with compiling RMySQL for Windows 64-bit?
Steven McKinney
Statistician
Molecular Oncol
A new facility has been added to r-devel for experimenting by authors of
packages.
The idea is to insert modified code from the package source into the
running package without re-installing. So one can change, test, change,
etc in a quick loop.
The mechanism is to evaluate some files of sourc
Note that S4 classes extend "environment" and other reference types, by
using a hidden slot. You can then add other slots. So, with some extra
work:
> setClass("myEnv", contains = "environment",
+ representation(myName = "character"))
[1] "myEnv"
> Foo <- new("myEnv", myName = "Foo")
> Foo
An
On 16 July 2010 13:32, Hadley Wickham wrote:
> On Fri, Jul 16, 2010 at 2:08 PM, Jon Clayden wrote:
>> Dear all,
>>
>> I am trying to create an environment object with additional attributes, viz.
>>
>> Foo <- structure(new.env(), name="Foo")
>>
>> Doing this in a standard session works fine: I get
On Fri, Jul 16, 2010 at 2:08 PM, Jon Clayden wrote:
> Dear all,
>
> I am trying to create an environment object with additional attributes, viz.
>
> Foo <- structure(new.env(), name="Foo")
>
> Doing this in a standard session works fine: I get the environment
> with attr(,"name") set as expected.
On Fri, Jul 16, 2010 at 8:15 AM, Gabor Grothendieck
wrote:
> On Fri, Jul 16, 2010 at 8:08 AM, Jon Clayden wrote:
>> Dear all,
>>
>> I am trying to create an environment object with additional attributes, viz.
>>
>> Foo <- structure(new.env(), name="Foo")
>>
>> Doing this in a standard session wor
On Fri, Jul 16, 2010 at 8:08 AM, Jon Clayden wrote:
> Dear all,
>
> I am trying to create an environment object with additional attributes, viz.
>
> Foo <- structure(new.env(), name="Foo")
>
> Doing this in a standard session works fine: I get the environment
> with attr(,"name") set as expected.
Dear all,
I am trying to create an environment object with additional attributes, viz.
Foo <- structure(new.env(), name="Foo")
Doing this in a standard session works fine: I get the environment
with attr(,"name") set as expected. But if the same code appears
inside a package source file, I get j