import warnings
warnings.filterwarnings('ignore')
fig, axes = plt.subplots(nrows=1, ncols=2, sharex=False, sharey=False, figsize=(15, 8))
explode = [0,0.2,0.2]
labels = ['R','L','Other']
axes[0].pie(Side_df, explode=explode, labels=labels, autopct='%1.1f%%', shadow=True)
axes[0].set_title("Relative side of the street in percentage")
Side_df.sort_index().plot(kind='bar',ax=axes[1])
axes[1].set_title("Bar Chart")
axes[1].set_ylim(auto=True)
plt.show()
https://www.kaggle.com/sobhanmoosavi/us-accidents
在练习美国事故数据集时,我正在为列侧绘制数据,但我无法绘制准确的计数,相反,我在y轴上得到小数,如何将小数转换为绝对计数。
“r”的计数是3467079,“l”的计数是765461,其余的计数是1。
暂无答案!
目前还没有任何答案,快来回答吧!