发布于2021-07-25 07:23 阅读(1045) 评论(0) 点赞(4) 收藏(4)
path = 'C:/Users/dly/Desktop/RNA链路预测/0CircR2Disease--雷/0CircR2Disease--雷/shili.xlsx'
a = pd.read_excel(path)
#加index_col表示按哪个属性做索引并排序
a.plot.bar(x='Year',y='number')
#x表示名称,y表示名称对应的值,还可添加color,title
plt.show()
# 另一种方式
plt.bar(a.Year,a.number,color='orange')
plt.xlabel("aaa")
plt.ylabel("bbb")
plt.title("ccc",fontsize=16,fontweight='blod')
plt.tight_layout();
#自动调整子图参数,使之填充整个图像区域
plt.show();
a.plot.bar(x='Year',y=['student','teacher'],color=['orange','red'])
plt.tight_layout()
plt.show()
a.plot.bar(x='Year',y=['student','teacher'],stacked=True,title="hahaha")
# a.plot.barh生成横向柱状图
plt.tight_layout()
plt.show()
a['number'].plot.pie();#默认逆时针。加参数counterclock=true变为顺时针
plt.show()
a.plot(y=['Year','number','student'])
plt.show()
a.plot.scatter(x='Year',y='number')
plt.show()
print(a.columns)
plt.hist(x=a.number,bins=100)
plt.show()
原文链接:https://blog.csdn.net/qq_44869254/article/details/119043510
作者:我想吃麻辣烫
链接:http://www.pythonpdf.com/blog/article/479/db808b83b41db51b5f06/
来源:编程知识网
任何形式的转载都请注明出处,如有侵权 一经发现 必将追究其法律责任
昵称:
评论内容:(最多支持255个字符)
投诉与举报,广告合作请联系vgs_info@163.com或QQ3083709327
免责声明:网站文章均由用户上传,仅供读者学习交流使用,禁止用做商业用途。若文章涉及色情,反动,侵权等违法信息,请向我们举报,一经核实我们会立即删除!