在python中添加x轴stripplot的数据间隔

时间:2018-04-30 18:22:57

标签: python-3.x seaborn

我在python中使用stripplot,其中轴I的时间范围为3601到8600秒。但是从图中可以很难看出x轴的时间。如何添加特定间隔(如图中的y轴)以使其可见?这是我生成图的代码。

{}

这是我的数字

enter image description here 我看过seaborn.stripplot个文档,但找不到合适的例子。有人帮忙吗?

1 个答案:

答案 0 :(得分:1)

这个问题大约有5个月大了,但是如果有人需要回答。

您可以尝试以下操作:

from matplotlib import pyplot as plt
import matplotlib.ticker as ticker

fig,axs = plt.subplots()
axs.yaxis.set_major_locator(ticker.MultipleLocator(0.05))