如何在x轴上绘制带有two_level的散点图?

时间:2019-03-29 09:06:36

标签: excel pandas matplotlib

我的excel工作表包含三列(“日期”,“小时”,“ Y”),我需要在x轴上绘制拖曳级别的散点图,顶层包含小时,而底部包含日期。 / p>

enter image description here 如何使用excel或python做到这一点?

更新1:

我使用python并遵循了这个问题How do I get a multilevel x axis labelled plot in pandas?

中可接受的答案
%matplotlib inline


final=flow_perTimePd[['y']]

new2=["%02d" %a+':00:00' for a in flow_perTimePd['hour']]

alpha=flow_perTimePd['date']+'-'+new2

final.index=pd.to_datetime(alpha,format='%Y/%m/%d-%H:%M:%S')
final.plot(figsize=(50,25))

其中,结果图表如下,未说明小时。 enter image description here

0 个答案:

没有答案