Re: [Rpy] Segmentation fault error when calling robjects.r.table()

2009-05-01 Thread laurent
On Wed, 2009-04-29 at 09:37 -0700, Kylee Kim wrote: > I am using rpy2-2.0.3. > > I am using Python and R in the shared library and don't know if > updating them will cause problems to other people's scripts. But I > will try to get updated Python and R in my local directory and retry. > > > B

Re: [Rpy] Segmentation fault error when calling robjects.r.table()

2009-04-29 Thread Kylee Kim
I am using rpy2-2.0.3. I am using Python and R in the shared library and don't know if updating them will cause problems to other people's scripts. But I will try to get updated Python and R in my local directory and retry. BTW, if i upgrade R, would rpy2 can find R? Or should i reinstall rpy2? T

Re: [Rpy] Segmentation fault error when calling robjects.r.table()

2009-04-28 Thread laurent
Please specify your rpy2 version. I am running your code without segfault with rpy2-2.04 (to be released shortly) and R-2.9.0/Python 2.4.6 R-2.9.0/Python 2.5.4 R-2.9.0/Python 2.6.2 Trying updating your Python version, then your R version. There were reports of people seeing mysterious segfau

[Rpy] Segmentation fault error when calling robjects.r.table()

2009-04-28 Thread Kylee Kim
Hi, I am getting segmentation fault error for robjects.r.table() and trying to understand why this happens. Here is simplified example. import rpy2.robjects as robjects r = robjects.r mylist = ['a', 'a', 'b', 'd', 'b'] myNumList = [1,2,3,4] print robjects.IntVector(myNumList) #>>> print robjects