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

2008-05-19 Thread Gregory. R. Warnes
py-list -- Mirco Musolesi Dept. of Computer Science, Dartmouth College 6211 Sudikoff Laboratory Hanover NH 03755 USA Web: http://www.cs.dartmouth.edu/~musolesi -- --- This SF.net email is sponsored by: Microsoft Defy all challe

Re: [Rpy] Version 1.0.3 now available

2008-05-14 Thread Gregory. R. Warnes
Hi Dirk, Is it sufficient to simply add lapack to the list of libraries? libraries=['R','Rlapack','lapack'] -Greg On May 13, 2008, at 9:38AM , Dirk Eddelbuettel wrote: Hi Greg, On 12 May 2008 at 23:54, Gregory. R. Warnes wrote: | Hi All, | |

[Rpy] Version 1.0.3 now available

2008-05-12 Thread Gregory. R. Warnes
build this for our Windows users? Thanks -Greg Gregory R. Warnes, Ph.D. Associate Professor Center for Biodefence Immune Modeling and Department of Biostatistics and Computational Biology University of Rochester -

[Rpy] RPy 1.0.2 Now available

2008-04-11 Thread Gregory. R. Warnes
Hi All, I've uploaded RPy 1.0.2 to sourceforge. The NEWS entry for this version is below. Importantly, this should version should (re-) correct crashes due to issues with R's C stack checking code. -Greg CHANGES IN RPY 1.0.2 - 2008-04-10 - New features:

Re: [Rpy] RPy & Windows install and import problems

2007-11-29 Thread Gregory R. Warnes
ettings won't help. The problem is now on the RPY BUG LIST as [ 1835064 ] Crash on import rpy (11-20-2007) and also [ 1827071 ] import error / restart (11-06-2007) Below is the good news (thanks Greg). A RC3 solution is coming. It has not happened yet (as of Nov 28 2007) in the sen

[Rpy] RPy 1.0.0 Released

2007-11-19 Thread Gregory R. Warnes
Hi Everyone, I've posted RPy 1.0.0 source packages on the sourceforge download page atIt resolves (I hope) all of the bugs that have been biting people: silent failure to start on Windows, problems on 64 bit systems, and problems with NumPy/Nummary arrays. Please grab it and take it

Re: [Rpy] Bug#443147: python-rpy: Invalid 'z' argument when calling persp() on amd64

2007-10-08 Thread Gregory. R. Warnes
I'm working through the list of bugs / patches /feature enhancements now -G On Oct 8, 2007, at 9:13AM , Dirk Eddelbuettel wrote: > > Greg, > > On 3 October 2007 at 11:27, Gregory Warnes wrote: > | > | Hi Dirk, Alan, et al. > | > | Sorry for the huge delay in response. I'll look into this

[Rpy] New RPy Release: 1.0RC3

2007-06-28 Thread Gregory. R. Warnes
Hello Everyone, RPy version 1.0RC3 is now available. This release fixes a major bug with recent versions of R on non-Windows systems and adds support for NumPy. Enjoy! -Greg === CHANGES in RPY 1.0RC3 - 2007-06-26 -- New Features: - Now sup

Re: [Rpy] How to use libraries in rpy?

2007-05-13 Thread Gregory R. Warnes
The problem is that in python '.' (period) is a valid character in a variable/function *name*, while it is not valid in python. To overcome this problem, use '_' (underscore), which RPy will translate to a '.' So, try palette = r.brewer_pal(3, "Greens") -Greg On May 12, 2007, at

Re: [Rpy] R segfault on ctrl-c

2007-03-26 Thread Gregory. R. Warnes
What O/S? On Mar 26, 2007, at 11:36AM , Jacob Joseph wrote: > Hi folks, > I'm looking for suggestions to correct a crash caused by R. Often, > upon > pressing ctrl-C after importing rpy, R segfaults. I need not have yet > accessed rpy for this to occur. Here's a sample: > > *** caught se

[Rpy] Please submit converters/python wrappers

2007-03-26 Thread Gregory R. Warnes
Everyone: I would like to start bundling additional class converters & python classes with rpy. Please submit converters/wrappers/etc that you've written using the Sourceforge patch site at: http://sourceforge.net/projects/rpy/patches -Greg -

Re: [Rpy] datetime support

2007-03-26 Thread Gregory. R. Warnes
Hi Craig, While rpy does not currently ship with datetime support, this support has been created by other users. Perhaps someone on the list will share their code. -Greg On Mar 25, 2007, at 11:32PM , Craig Brown wrote: > I saw some old email in the archive talking about datetime support

Re: [Rpy] Python crashing

2007-02-19 Thread Gregory. R. Warnes
Hi Joseph, It really is essential that RPy is compiled against the exact version of R you are using. Modifying the source code to avoid the consistency check is likely to lead to segfaults like the ones you are seeing. Please upgrade to a newer version of Rpy to match your version of R. -

Re: [Rpy] R.2.4.1 and python 2.5 support are added.

2007-02-15 Thread Gregory. R. Warnes
Thanks Bo! -G On Feb 15, 2007, at 2:59PM , Bo Peng wrote: > Hi, > > I have uploaded two files rpy-1.0-RC2.win32-R2.0.0-R-2.4.1-py2.4.exe > and rpy-1.0-RC2.win32-R2.0.0-R-2.4.1-py2.5.exe. Please report here > if you experience any problem with them. > > Cheers, > Bo > > ---

Re: [Rpy] status of numpy version of rpy

2007-02-05 Thread Gregory. R. Warnes
Hi Jarrod, The Numpy patch should be applied sometime this week. -Greg On Feb 3, 2007, at 3:03 AM, Jarrod Millman wrote: > Hello, > > Thanks for all the great work. I am involved with the Neuroimaging in > Python project, which uses numpy. Numpy is very stable and much > better than Numeric.

Re: [Rpy] getting the Nth row of a data_frame

2007-01-05 Thread Gregory. R. Warnes
You should be able to use something like: > from rpy import * > set_default_mode(NO_CONVERSION) > d = r.data_frame(a=(1,2,3), b=(71,72,73)) > getRow = r("function(d, i) d[i,,drop=FALSE]") > r1 = getRow(d,1) -Greg On Jan 4, 2007, at 5:28 PM, BORGULYA Gábor wrote: > Dear All, > > Could someone t