如何更改大熊猫时间序列图的x-tick密度?

时间:2014-12-02 11:58:25

标签: python matplotlib pandas plot time-series

我正在尝试生成一个可视化大熊猫时间序列的小图。但是,自动生成的x-ticks不适应新的大小并导致重叠的刻度。我想知道如何调整x-ticks的频率?例如。对于这个例子:

figsize(4, 2)

num = 3000
X = linspace(0, 100, num=num)
dense_ts = pd.DataFrame(sin(X) + 0.1 * np.random.randn(num),
                        pd.date_range('2014-01-1', periods=num, freq='min'))

dense_ts.plot()

我得到的数字是:

time series plot with overlapping x-ticks

我可以使用Matplotlib日期绘图来解决这个问题,但它不是一个非常优雅的解决方案 - 代码要求我根据具体情况指定所有输出格式。

figsize(4, 2)

from matplotlib import dates

fig, ax = plt.subplots()
ax.plot_date(dense_ts.index.to_pydatetime(), dense_ts, 'b-')
ax.xaxis.set_minor_locator(dates.HourLocator(byhour=range(24),
                                           interval=12))
ax.xaxis.set_minor_formatter(dates.DateFormatter('%H:%m'))
ax.xaxis.set_major_locator(dates.WeekdayLocator())
ax.xaxis.set_major_formatter(dates.DateFormatter('\n\n%a\n%Y'))

plt.show()

matplotlib date solution

我想知道是否有办法使用pandas plotting模块解决此问题,或者可能通过设置一些axes对象属性?我尝试使用ax.freq对象,但实际上无法实现任何目标。

1 个答案:

答案 0 :(得分:0)

您可以传递要在dense_ts.plot()

中显示的x轴值列表
dense_ts.plot(xticks=['10:01','22:01'...])

另一个清晰的例子

df = pd.DataFrame(np.random.randn(10,3))

未指定xticks的情节

df.plot(legend=False)

enter image description here

使用xticks参数绘图

df.plot(xticks=[2,4,6,8],legend=False)

enter image description here