My question is analogous to this one but in the context of importing R to Python via RPy. Specifically, when I run
from rpy import *
at the beginning of my python script, there is a chunk of message dumped to the screen (or output device), starting with
Parsing output: R version 2.13.2 (2011-09-30)
Copyright (C) 2011 The R Foundation for Statistical Computing
... ...
I wanted to implement the quiet_require
from here but don't see how it fits in the context of importing all modules.
I know this is possible because the same program running on another box doesn't output any message.
UPDATE: this does not have to be solved within Python. If I can somehow tweak a variable on the R side to allow all invocations to be quiet, that works too. I just don't know how to do that.