On Fri, 2009-04-10 at 10:18 +0100, Peter wrote:
> On Fri, Apr 10, 2009 at 6:10 AM, laurent wrote:
> >
> > There is even more in the fine manual:
> >
> > http://rpy.sourceforge.net/rpy2/doc/html/introduction.html#linear-models
> > ...
>
> Can anyone tell me what this bit of the rpy2 linear model
On Fri, Apr 10, 2009 at 6:10 AM, laurent wrote:
>
> There is even more in the fine manual:
>
> http://rpy.sourceforge.net/rpy2/doc/html/introduction.html#linear-models
> ...
Can anyone tell me what this bit of the rpy2 linear models manual means:
>> Q:
>>Now how extract data from the resultin
There is even more in the fine manual:
http://rpy.sourceforge.net/rpy2/doc/html/introduction.html#linear-models
http://rpy.sourceforge.net/rpy2/doc/html/robjects.html#formulae
On Thu, 2009-04-09 at 21:10 +, Juls Night wrote:
> Many thanks!
>
> I see now how this works.
>
> Best,
> Juls
>
Many thanks!
I see now how this works.
Best,
Juls
--
This SF.net email is sponsored by:
High Quality Requirements in a Collaborative Environment.
Download a free trial of Rational Requirements Composer Now!
http://p.s
On Thu, Apr 9, 2009 at 10:08 AM, Warnes, Gregory R.
wrote:
> Instead of
> oneway = robjects.r['oneway.test']
> test = oneway("values ~ ind, data=d, var.equal=TRUE")
> try this:
> test = robjects.r['oneway.test(values ~ ind, data=d, var.equal=TRUE)']
Typo: should use () here, not []:
test = r
al=TRUE)']
or
oneway = robjects.r['oneway.test']
test = oneway("values ~ ind", data=d, var.equal=True)
-Greg
-Original Message-
From: Juls Night [mailto:julsni...@yahoo.com]
Sent: Wednesday, April 08, 2009 11:38 PM
To: rpy-list@lists.sourceforge.net
Subject: [
Hi,
I'm new to rpy2 and am trying out a few examples. I'm unfortunately getting a
bit confused...
I've tried the example anova on the rpy2 document page and it works as expected.
Now I'm trying to conduct an anova in a different way (and all I've managed to
do is highlight my ignorance).
import