删除matplotlib子图中的默认轴标签

时间:2019-04-09 19:47:27

标签: python python-3.x matplotlib subplot

如何防止matplotlib将默认轴标签添加到我的子图中?下面的简单代码也将x和y轴标记为0到1。这在我添加实际数据时会弄乱我的图(根据数据添加了新标签,但0到1标签仍然存在)。

import matplotlib.pyplot as plt
fig, ax1 = plt.subplots()
ax1 = fig.add_subplot(111)
plt.show(block=True)

上面产生了这个数字:

enter image description here

因此,当我包含实际数据时,它看起来像这样,只有这一行附加代码(final_wavelengthsfinal_stellar是长度相等的numpy数组)

ax1.plot(final_wavelengths, final_stellar, 'b', label='stellar')

enter image description here

如何删除不需要的默认0-1标签?

0 个答案:

没有答案