- Google Colab 教程
- Google Colab - 主页
- Google Colab - 简介
- 什么是 Google Colab?
- 你的第一个 Colab 笔记本
- 记录你的代码
- Google Colab - 保存你的工作
- Google Colab - 分享笔记本
- 调用系统命令
- 执行外部 Python 文件
- Google Colab - 图形输出
- Google Colab - 代码编辑帮助
- Google Colab - Magics
- Google Colab - 添加 Form
- Google Colab - 安装 ML 库
- Google Colab - 使用免费 GPU
- Google Colab - 结论
- Google Colab 有用资源
- Google Colab - 快速指南
- Google Colab - 有用资源
- Google Colab - 讨论
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()
现在,如果你运行代码,你会看到以下输出 -
请注意,图形输出会显示在代码单元的输出部分。同样,你将能够在你的程序代码中创建和显示多种类型的图表。
现在,你已经熟悉了 Colab 的基础知识,让我们继续了解 Colab 中让你的 Python 代码开发更轻松的功能。
广告