折线图#

创建基本折线图。

import matplotlib.pyplot as plt
import numpy as np

# Data for plotting
t = np.arange(0.0, 2.0, 0.01)
s = 1 + np.sin(2 * np.pi * t)

fig, ax = plt.subplots()
ax.plot(t, s)

ax.set(xlabel='time (s)', ylabel='voltage (mV)',
       title='About as simple as it gets, folks')
ax.grid()

fig.savefig("test.png")
plt.show()
About as simple as it gets, folks

参考

本示例中展示了以下函数、方法、类和模块的使用

标签:plot-style: line level: beginner

脚本的总运行时间: (0 分钟 1.084 秒)

由 Sphinx-Gallery 生成的图库