python matplotlib:简单的情节

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python matplotlib:简单的情节相关的知识,希望对你有一定的参考价值。

import matplotlib
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()

以上是关于python matplotlib:简单的情节的主要内容,如果未能解决你的问题,请参考以下文章

Python matplotlib,图上的时间戳

matplotlib交换x和y轴

Python Tkinter 在 GUI 中嵌入 Matplotlib

如何停止Matplotlib导航工具栏放大重置情节更新?

Python matplotlib colorbar 科学记数法库

Matplotlib--用Python创建各种数据可视化图形