gpt4 book ai didi

python - 如何在图的顶部绘制 x 轴?

转载 作者:太空狗 更新时间:2023-10-29 21:38:05 24 4
gpt4 key购买 nike

请问如何制作类似下图的plot?基本上,如何在图的顶部设置 x 轴。谢谢

enter image description here

图片来自:http://oceanographyclay1987.blogspot.com/2010/10/light-attenuation-in-ocean.html

最佳答案

使用

ax.xaxis.set_ticks_position("top")

例如,

import numpy as np
import matplotlib.pyplot as plt

numdata = 100
t = np.linspace(0, 100, numdata)
y = 1/t**(1/2.0)

fig = plt.figure()
ax = fig.add_subplot(1, 1, 1)
ax.xaxis.set_ticks_position('top')
ax.yaxis.grid(linestyle = '-', color = 'gray')
ax.invert_yaxis()
ax.plot(t, y, 'g-', linewidth = 1.5)

plt.show()

enter image description here

关于python - 如何在图的顶部绘制 x 轴?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8639973/

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