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. Thx!
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.
from package import *is highly discouraged as it pollutes the global namespace. If you don't want to type rpy all the time, you can shorten it withimport rpy as R. – Wilduck Dec 19 '11 at 17:06--quietoption. – Richie Cotton Dec 19 '11 at 17:24rpy2directly instead ofrpy? – jcollado Dec 19 '11 at 19:35