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.
ipythonでヒストグラムをプロットするときに配列出力を抑制することは可能ですか?:
例えば:
plt.hist(OIR['Range'], bins, named=True, histtype='bar')
グラフを表示する前に配列情報を出力/印刷します。
;コードの後に置くだけです。 ipython-notebook でのみ動作します。
;
plt.hist(...);
戻り値を変数に割り当てます (_未使用であることを示すために呼び出します)。
_
_ = plt.hist(...)