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