浮动条形图

2023-12-20

我正在尝试绘制一个图,其中 x 轴是时间,y 轴是条形图,条形图覆盖特定时间段,如下所示:

                         ______________
                         |_____________|

    _____________________
    |___________________|
----------------------------------------------------->
             time

我有 2 个日期时间值列表,分别代表我想要涵盖的这些时间的开始和结束时间。到目前为止我已经

x = np.array([dt.datetime(2010, 1, 8, i,0) for i in range(24)])

涵盖 24 小时期间。我的问题是如何设置和绘制 y 值以使其看起来像这样?


你可以使用plt.barh:

import datetime as DT
import numpy as np
import matplotlib.pyplot as plt
import matplotlib.dates as mdates

start = [DT.datetime(2000,1,1)+DT.timedelta(days=i) for i in (2,0,3)]
end = [s+DT.timedelta(days=i) for s,i in zip(start, [15,7,10])]
start = mdates.date2num(start)
end = mdates.date2num(end)
yval = [1,2,3]
width = end-start

fig, ax = plt.subplots()
ax.barh(bottom=yval, width=width, left=start, height=0.3)
xfmt = mdates.DateFormatter('%Y-%m-%d')
ax.xaxis.set_major_formatter(xfmt)
# autorotate the dates
fig.autofmt_xdate()
plt.show()

yields

本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

浮动条形图 的相关文章

随机推荐