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(...)
您还可以添加plt.show():
plt.show()
plt.hist(OIR['Range'], bins, named=True, histtype='bar') plt.show()