gpt4 book ai didi

python - 如何在不添加 "ticks"的情况下从下到上移动标签

转载 作者:行者123 更新时间:2023-12-01 01:42:10 24 4
gpt4 key购买 nike

如何使用“tick_top”以外的其他内容将 xlabel 放置在绘图顶部 - 这会在 x 标签上添加一个勾号,但我不想要它。

底部的 xlabel 没有勾号: enter image description here

代码:

import numpy as np; np.random.seed(0)
import matplotlib.pyplot as plt
import seaborn as sns
sns.set()
uniform_data = np.random.rand(10, 12)
ax = sns.heatmap(uniform_data, vmin=0, vmax=1)
plt.yticks(rotation=0)
plt.show()

xlabel 位于顶部,但带有勾号: enter image description here

代码:

import numpy as np; np.random.seed(0)
import matplotlib.pyplot as plt
import seaborn as sns
sns.set()
uniform_data = np.random.rand(10, 12)
ax = sns.heatmap(uniform_data, vmin=0, vmax=1)
plt.yticks(rotation=0)
ax.xaxis.tick_top() # x axis on top
ax.xaxis.set_label_position('top')
plt.show()

最佳答案

试试这个:

plt.tick_params(axis='both', which='major', labelsize=10, labelbottom = False, bottom=False, top = False, labeltop=True)

参数top=False表示没有刻度。 :)

关于python - 如何在不添加 "ticks"的情况下从下到上移动标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51759859/

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