Re: [Rpy] rpy and R 2.6.2

2008-04-02 Thread Warnes, Gregory R
I've just built a version with support for 2.6.2. Look for it tomorrow. -G --Original Message-- From: Mark Janikas To: rpy-list@lists.sourceforge.net ReplyTo: RPy help, support and design discussion list Sent: Apr 2, 2008 5:58 PM Subject: [Rpy] rpy and R 2.6.2 Hello all, I am new

Re: [Rpy] Problem with the installation of rpy on Mac (Leopard)

2008-05-18 Thread Warnes, Gregory R
I've uploaded a new mac binary for 1.3.0 that supports 2.6.2 and 2.7.0. -G --Original Message-- From: Mirco Musolesi To: rpy-list@lists.sourceforge.net ReplyTo: RPy help, support and design discussion list Sent: May 18, 2008 7:06 PM Subject: [Rpy] Problem with the installation of rpy on M

Re: [Rpy] Rpy on Mac

2008-06-24 Thread Warnes, Gregory R.
Hi Nishant, It looks like rpy can¹t locate the R shared library: RuntimeError: dlopen(/Library/Python/2.5/site-packages/_rpy2062.so, 2): Library not loaded: libR.dylib Try locating the libR.dylib file and then placing the exact correct directory in the LD_LIBRARY_PATH environment variable. -Gre

Re: [Rpy] rpy2: alpha2 released

2008-08-07 Thread Warnes, Gregory R.
I get a similar error on my Mac Leopard system: [Crooked-2:~/src/rpy_nextgen] warnes% python setup.py build running build running build_py creating build creating build/lib.darwin-9.4.0-i386-2.4 creating build/lib.darwin-9.4.0-i386-2.4/rpy2 copying rpy/__init__.py -> build/lib.darwin-9.4.0-i386-2

Re: [Rpy] rpy2: alpha2 released

2008-08-07 Thread Warnes, Gregory R.
Works fine for me after removing the old fink python 2.4 so that I'm using 2.5.1 -G -Original Message- From: Laurent Gautier [mailto:[EMAIL PROTECTED] Sent: Thursday, August 07, 2008 1:06 PM To: Warnes, Gregory R. Cc: rpy-list@lists.sourceforge.net Subject: Re: [Rpy] rpy2: a

Re: [Rpy] rpy 1.0.3 wants Rdevices.h, but R 2.8.0 (beta) has none to give

2008-10-20 Thread Warnes, Gregory R.
I will try to update rpy to work with R 2.8 later this week. Feel free to remind me if you don't see anything by Thursday evening. -Greg -Original Message- From: laurent oget [mailto:[EMAIL PROTECTED] Sent: Monday, October 20, 2008 11:43 AM To: RPy help,support and design discussion lis

[Rpy] List index out of range

2008-11-12 Thread Warnes, Gregory R.
[Forwarded for David Carr] From: Carr, David [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 11, 2008 1:28 PM Hello all, I am preparing a lecture for next week... was going to introduce rpy2 to the class. But using the latest rc1 binary on Windows and I get the following errors. Please

Re: [Rpy] uniroot, and r.function()

2008-11-21 Thread Warnes, Gregory R.
Use fun = r(" function(x) { x+1 }") -G - Original Message - From: Antonio Garcia-Martinez <[EMAIL PROTECTED]> To: rpy-list@lists.sourceforge.net Sent: Thu Nov 20 23:35:25 2008 Subject: [Rpy] uniroot, and r.function() I'm trying to use R's uniroot function from within python. The first

Re: [Rpy] future of rpy 1.0

2008-12-01 Thread Warnes, Gregory R.
RPy 1.0 will continue to exist, and bug fixes will be made, but feature enhancements will occur in RPy2, which is being so capably handled by Laurent. I'll try to create a Windows installer for 2.8.0 later this week. -Greg -Original Message- From: Laurent Gautier [mailto:[EMAIL PROTECTED]

Re: [Rpy] future of rpy 1.0

2008-12-01 Thread Warnes, Gregory R.
Yes, we do accept Windows binary submissions. -greg -Original Message- From: Peter [mailto:[EMAIL PROTECTED] Sent: Monday, December 01, 2008 5:30 AM To: RPy help,support and design discussion list Subject: Re: [Rpy] future of rpy 1.0 On Mon, Dec 1, 2008 at 2:42 AM, Mario Beauchamp <[E

Re: [Rpy] future of rpy 1.0

2008-12-01 Thread Warnes, Gregory R.
/R version is the most needed? Laurent 2008/12/1 Warnes, Gregory R. <[EMAIL PROTECTED]>: > RPy 1.0 will continue to exist, and bug fixes will be made, but feature > enhancements will occur in RPy2, which is being so capably handled by > Laurent. I'll try to create a Windows

Re: [Rpy] Keep rpy object loaded in memory after cgi script ends

2009-02-18 Thread Warnes, Gregory R.
Hi Everyone, (Yes, I'm finally coming out of hibernation...) Another approach to the problem, and one I adopted for RSOAP, involved pre-starting a single process which initialized R. Then anytime a request came in, the process forked, resulting in an immediate 'ready-to-go' process to do the wor

Re: [Rpy] Anova example

2009-04-09 Thread Warnes, Gregory R.
R is complaining because you handed the 'oneway' function a single string parameter. 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)'] or oneway = robjects.r[

Re: [Rpy] Why rpy.r.t is not working

2009-09-28 Thread Warnes, Gregory R.
The problem is that the R object returned from "rpy.r.matrix(range(6),nr=2)" is being automatically converted to a python object before being passed to the transpose function. The easiest solution is to turn off automatic conversion, and then manually ask for conversion when you want it: >>> impo

Re: [Rpy] na.action?

2009-10-01 Thread Warnes, Gregory R.
Hi All, These are the longstanding rpy rules (where 'x' represents any sequence of valid name character in *python*, including A-Z, a-Z anywhere and 0-9 anywhere except in the first position): python R Example x_x x.x print_default(m) --> print.default(m) x_

Re: [Rpy] na.action?

2009-10-02 Thread Warnes, Gregory R.
1") in which case r.dollar would return the R vector containing 1, and stackloss.r.dollar("Air.Flow") would still work, too. -Greg > -Original Message- > From: n...@vorpus.org [mailto:n...@vorpus.org] On Behalf Of Nathaniel > Smith > Se

Re: [Rpy] Rpy and dot names

2011-04-15 Thread Warnes, Gregory R.
The issue is probably that your surv_time variable is being translated 'back' into a python object. Try changing the conversion mode to NO_CONVERSION and explicitly requesting conversion when you need to access the results in python. I.E. import rpy rpy.set

Re: [Rpy] Strangeness with R.home

2011-05-25 Thread Warnes, Gregory R.
It is possible if rpy is detecting and using a different R binary... -Greg > -Original Message- > From: Luca Beltrame [mailto:luca.beltr...@marionegri.it] > Sent: Wednesday, May 25, 2011 10:16 AM > To: rpy-list@lists.sourceforge.net > Subject: [Rpy] Strangeness with R.home > > Hello, >