Re: [Rpy] characters in axis labels

2009-11-17 Thread wayne jones
Look at help(plotmath) in R. Date: Tue, 17 Nov 2009 14:58:05 -0800 From: emau...@scu.edu To: rpy-list@lists.sourceforge.net Subject: [Rpy] characters in axis labels I must be overlooking something obvious here, but after a few hours of searching I have nothing that works. I want to use r

Re: [Rpy] suppress R warnings with RPy2

2009-11-17 Thread wayne jones
See "help(warning)" in R. To completely suppress warnings do: >options(warn=-1) Also see help(suppressWarnings) in R which may be more appropriate if you know where the warnings originate from. > suppressWarnings(for(i in 1:3) {m <- matrix(1:7, 3,4) }) > for(i in 1:3) {m <- mat

Re: [Rpy] RPy2 win xp R plotting

2009-07-23 Thread wayne jones
To allow the console etc to respond to Windows events, > > call `R_ProcessEvents()' periodically from your compiled code. If you > > want output to be updated on the console, call `R_FlushConsole()' and > > then `R_ProcessEvents()'. > > > > > >&g

Re: [Rpy] RPy2 win xp R plotting

2009-07-22 Thread wayne jones
: rpy-list@lists.sourceforge.net > Subject: Re: [Rpy] RPy2 win xp R plotting > > 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: > > > &g

[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