gpt4 book ai didi

python - 如何将 xticks 更改为特定范围

转载 作者:行者123 更新时间:2023-12-01 07:41:05 25 4
gpt4 key购买 nike

我画了一个计数图,如下:

ax, fig = plt.subplots()
sns.countplot(user_id_count[:100])

(array([ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40]), )

enter image description here

但我想将 xticks 更改为仅显示 10, 20, 30, 40这4个数字,所以我检查了文档并重新编码如下:

ax, fig = plt.subplots()
sns.countplot(user_id_count[:100])
plt.xticks(range(10, 41, 10))

enter image description here

但是 xticks 不是我想要的。
我搜索了相关问题,但没有得到我想要的。
那么如果不介意的话有人可以帮助我吗?

最佳答案

一种方法是在 x 轴上定义标签。来自 matplotlib 模块的 set_xticklabels 方法完成这项工作 (doc) 。通过定义自己的标签,您可以通过将标签设置为等于''来隐藏它们。

通过定义自己的标签,您需要注意它们仍然与您的数据一致

这是一个例子:

# import modules
import numpy as np
import seaborn as sns
import matplotlib.pyplot as plt

#Init seaborn
sns.set()

# Your data to count
y = np.random.randint(0,41,1000)

# Create the new x-axis labels
x_labels = ['' if i%10 != 0 else str(i) for i in range(len(np.unique(y)))]
print(x_labels)
# ['0', '', '', '', '', '', '', '', '', '',
# '10', '', '', '', '', '', '', '', '', '',
# '20', '', '', '', '', '', '', '', '', '',
# '30', '', '', '', '', '', '', '', '', '', '40']

# Create plot
fig, ax = plt.subplots()
sns.countplot(y)

# Set the new x axis labels
ax.set_xticklabels(x_labels)
# Show graph
plt.show()

enter image description here

关于python - 如何将 xticks 更改为特定范围,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56713197/

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