如何在IPython notebook中隐藏 <matplotlib.lines.Line2D>?

要在调用plot()方法时隐藏matplotlib.lines.Line2D实例,我们可以采取以下步骤-

  • 将numpy导入为np。

  • 从matplotlib中,将pyplot导入为plt。

  • 为x创建点,即np.linspace(1,10,1000)

  • 现在使用plot()方法绘制线条。

  • 要隐藏实例,请使用plt.plot(x);(带半冒号)

  • 或者,使用_ = plt.plot(x)

示例

In [1]: import numpy as np

In [2]: from matplotlib import pyplot as plt

In [3]: x = np.linspace(1, 10, 1000)

In [4]: plt.plot(x)

Out[4]: []

In [5]: plt.plot(x);

In [6]: _ = plt.plot(x)

In [7]:

输出结果

Out[4]: [<matplotlib.lines.Line2D at 0x7faa3852fac8>]

以上是 如何在IPython notebook中隐藏 <matplotlib.lines.Line2D>? 的全部内容, 来源链接: utcz.com/z/335669.html

回到顶部