我正在尝试使用pandas数据框绘制图形。我有一个数据框,我想绘制年与事件_类型,月与事件_类型之间的关系。日期和event_type。 在特定日期,特定月份等特定类型的事件数。
我已经使用groupby来获取数据帧,但是无法继续前进
x = z.groupby([5,'year','month_year','month','date_in_month','day','Hours',6])['Date'].count()
final = pd.DataFrame(x).reset_index()
final.columns=[5,'year','month_year','month','date_in_month','day','Hours','incident_type','count']
final
我想绘制图表以了解特定月份,特定日期和特定时间的事件数量。this is the image of the dataframe 说明:小时列以24小时格式表示时间,即15表示时间是下午3点。 month表示一年中的月份。 1表示“一月”。列名称5表示event_category。我想绘制在什么时间发生的事件类型。
TIA,