Python中matplotlib模块用例(代码)
程序员文章站
2022-04-25 08:44:36
...
本篇文章给大家带来的内容是关于Python中matplotlib模块用例(代码),有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。
import matplotlib.pyplot as plt import numpy as np import requests url='https://api.github.com/search/repositories?q=language:python&sort=stars' r=requests.get(url) print('数据访问状态值:',r.status_code) print('成功,正常获取网站数据'if r.status_code==200 else '错误,无法获取数据') response_dict=r.json() #转换成字典 #print(response_dict) repo_dicts=response_dict['items'] #print(repo_dicts) names=[repo_dict['name']for repo_dict in repo_dicts] print(names) plot_dicts=[repo_dict['stargazers_count'] for repo_dict in repo_dicts] print(plot_dicts) x=np.arange(len(names)) #x轴 plt.bar(x,plot_dicts) #y轴 plt.plot(x,plot_dicts,'rp--') #折线图 ax=plt.subplot() ax.set_ylabel('stargazers_count') #y轴标题 ax.set_xlabel('Github Reponstorys') #x轴标题 ax.set_xticks(x) #设置每一个x的标题 ax.set_xticklabels(names,rotation=90) #给每一个柱子加上标题 ax.set_title('Github') #plt.grid(linestyle='--') #虚线为背景,一个’-‘为实线,俩个为虚线 #plt.show() #保存图片 import os imgPath = os.getcwd() + '/images/ch04_demo05_github.jpg' plt.savefig(imgPath) print('图片保存成功.')
结果为:
这个其实比较简单,就是将json数据拿出来,并用matplotlib可视化一下就ok了
以上就是本篇文章的全部内容,关于python更多精彩内容大家可以关注Python视频教程和python文章教程!!!
以上就是Python中matplotlib模块用例(代码)的详细内容,更多请关注其它相关文章!
上一篇: CSS简单学习的要点
下一篇: phpcms学习总结
推荐阅读
-
使用Python中PDB模块中的命令来调试Python代码的教程
-
使用 Python 中 re 模块对测试用例参数化,进行搜索 search、替换 sub
-
python中pickle模块的常用函数及代码示例讲解
-
Python--代码1(接口测试:测试用例从数据库读取写到yaml文件中)
-
用Python中的turtle模块画图两只小羊方法
-
使用Python将xmind脑图转成excel用例的实现代码(一)
-
用python一行代码得到数组中某个元素的个数方法
-
用python把技术文档中,每个模块系列截图生成一个动态GIF
-
Python用pandas和matplotlib分析1949-2016年中国各省市历年GDP数据
-
python中sys模块是做什么用的