Google Colab - 图形输出



Colab 还支持图表等丰富的输出。在代码单元中输入以下代码。

import numpy as np
from matplotlib import pyplot as plt

y = np.random.randn(100)
x = [x for x in range(len(y))]

plt.plot(x, y, '-')
plt.fill_between(x, y, 200, where = (y > 195), facecolor='g', alpha=0.6)

plt.title("Sample Plot")
plt.show()

现在,如果你运行代码,你会看到以下输出 -

Graphical Outputs

请注意,图形输出会显示在代码单元的输出部分。同样,你将能够在你的程序代码中创建和显示多种类型的图表。

现在,你已经熟悉了 Colab 的基础知识,让我们继续了解 Colab 中让你的 Python 代码开发更轻松的功能。

广告