1
我有一個如下所示的數據框:大熊貓繪製一個特定的列作爲x軸和y軸使用?
我想plot company_id
作爲x軸,count(company_id)
作爲y軸。 我也想堆積它的類別open
和close
。
該代碼不顯示任何輸出並無限運行。
df
person_id company_id time event type date
0 1 255 1379312026 open A 2013-09-16 02:13:46
1 1 255 1379312086 close A 2013-09-16 02:14:46
2 1 182 1379312926 open B 2013-09-16 02:28:46
3 1 182 1379313046 close B 2013-09-16 02:30:46
4 1 81 1379314006 open A 2013-09-16 02:46:46
df2=df[['company_id','event']]
df2.plot(kind='bar',stacked=True)
會推薦Seaborn這一點。他們有方法可以在繪圖時隨時進行小型計算。看看這個Seaborn示例頁面:https://stanford.edu/~mwaskom/software/seaborn/tutorial/categorical.html – Kartik