[Rpy] suppress R warnings with RPy2

2009-11-17 Thread Atanas Kamburov
Hello *, I find rpy2 is of great help. The only thing that bothers me is that it prints all the R warnings. I am running a Zope server that also uses rpy2 and all the server errors are hidden among R warnings. Is there some global option or at least some trick to stop rpy2 printing warnings?

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

[Rpy] characters in axis labels

2009-11-17 Thread Edwin Maurer
I must be overlooking something obvious here, but after a few hours of searching I have nothing that works. I want to use rpy to create a plot with axis labels that include a superscript, a degree symbol, and the Greek character (uppercase) Delta. I have tried several permutations of r.expressio

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