Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
rpy2 を使用して Python で R をインポートする場合、警告を抑制するにはどうすればよいですか?
Rでは、次のことだけを行う必要があるようです
options(warn=-1)
...しかし、私はRに慣れていません.Pythonでこれを行うにはどうすればよいですか?
あなたはほとんど自分で答えを出しました。options(warn=-1)RPy を使用して、Python から関数を呼び出すことができます。
rpy.r['options'](warn=-1)
RPy2 の場合、次のようになります (これは試していません)。
rpy2.robjects.r['options'](warn=-1)
Python スクリプトの先頭 (モジュールのインポート後) に配置するだけで、すべての警告が抑制されます。