[Rpy] Still accepting RPy Bugs?

2009-07-21 Thread Skipper Seabold
Hello all, Are RPy bugs still being accepted on the sourceforge page? I think I found one when trying to do an rlm estimation. I can provide code to (possibly) reproduce; however, the short version is this. Given the stackloss data from R datasets and a data frame and formula given in the examp

Re: [Rpy] RPy2 win xp R plotting

2009-07-21 Thread Laurent Gautier
http://rpy.sourceforge.net/rpy2/doc/html/rinterface.html?highlight=even#graphical-devices Daniel Yuan wrote: > On Jul 21, 2009, at 11:45 AM, wayne jones wrote: > >> However if I run this script line by line in the python terminal >> window then >> the graphics appears but no graph is displayed

Re: [Rpy] RPy2 win xp R plotting

2009-07-21 Thread Daniel Yuan
On Jul 21, 2009, at 11:45 AM, wayne jones wrote: However if I run this script line by line in the python terminal window then the graphics appears but no graph is displayed and when I try to move or resize the plot it fails and eventually crashes Python. Perhaps this is a clue: On Mac OS X

[Rpy] RPy2 win xp R plotting

2009-07-21 Thread wayne jones
Hi Everyone, I am trying to run the following simple script to test R graphics using rpy2: import rpy2.robjects as robjects r = robjects.r m = r.matrix(r.rnorm(100), ncol=5) pca = r.princomp(m) r.plot(pca, main="Eigen values") If I run this script from Idle everything works