gpt4 book ai didi

python - 如何删除 matplotlib 中的上轴和右轴?

转载 作者:IT老高 更新时间:2023-10-28 21:08:31 25 4
gpt4 key购买 nike

我希望只有左轴和下轴,而不是默认的“盒装”轴样式,即:

+------+         |
| | |
| | ---> |
| | |
+------+ +-------

这应该很容易,但我在文档中找不到必要的选项。

最佳答案

这是官网推荐的 Matplotlib 3 解决方案 HERE :

import numpy as np
import matplotlib.pyplot as plt

x = np.linspace(0, 2*np.pi, 100)
y = np.sin(x)

ax = plt.subplot(111)
ax.plot(x, y)

# Hide the right and top spines
ax.spines.right.set_visible(False)
ax.spines.top.set_visible(False)

# Only show ticks on the left and bottom spines
ax.yaxis.set_ticks_position('left')
ax.xaxis.set_ticks_position('bottom')

plt.show()

enter image description here

关于python - 如何删除 matplotlib 中的上轴和右轴?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/925024/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com