Hi
I see the problem described earlier as well with the plotting examples. The first example is OK the  second gives this response:
Python 2.4.3 (#2, Apr 18 2006, 11:58:01)
[GCC 3.2.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> from rpy import *
RHOME= /usr/local/lib/R
RVERSION= 2.3.1
RVER= 2031
RUSER= /home/ehartley
Loading Rpy version 2031 .. Done.
Creating the R object 'r' ..  Done
>>> import math
>>> x = range(0, 10)
>>> y1 = [ 2*i for i in x ]
>>> y2 = [ math.log(i+1) for i in x ]
>>> r.plot_default(x, y1, col="blue", type="o")
>>> r.points(x, y2, col="red", type="o")
>>> xlabels = [ "#%d" % (i,) for i in x ]
>>> r.axis(1, at = x, label=xlabels, lwd=1, cex_axis=1.15)
[0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0]
>>> r.title("My Plot")
>>> Error during wrapup: C stack usage is too close to the limit
 My build of R is
bash-3.00$ R

R : Copyright 2006, The R Foundation for Statistical Computing
Version 2.3.1 (2006-06-01)
ISBN 3-900051-07-0
This is a cleaninstall today of R.
I'm an R newbie but well versed in Python which has been rogk solid for months.
No obvious cause I can see I'd also welcome any input on this one.
Regards
Ed Hartley
-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
rpy-list mailing list
rpy-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/rpy-list

Reply via email to