更改y轴刻度

时间:2020-08-10 07:28:07

标签: python matplotlib data-science seaborn

我正在做一些数据分析,并且试图对绘图的y轴进行一些更改。我正在使用Seaborn,并使用distplot()。 目前这是我的情节:

image1

但是我正在努力实现这一目标

image2

我想知道我是否需要在distplot()中加入一个特定的参数,或者我可以使用某些格式化方法?

1 个答案:

答案 0 :(得分:2)

您可以使用ax.set_yticks(或plt.yticks)编辑y刻度,如下所示:

custom_ticks = [0, 0.03, 0.1, 0.16, 0.23, 0.27, 0.32, 0.35, 0.39, 0.41]
ax.set_yticks(custom_ticks)

所以这个默认图:

enter image description here

成为:

enter image description here