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
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
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
: 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
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