跳至内容
售后
用户工具
登录
站点工具
搜索
工具
显示页面
修订记录
反向链接
最近更改
媒体管理器
网站地图
登录
>
最近更改
媒体管理器
网站地图
您的足迹:
matplot
编辑本页后请点击“保存”。请参阅
syntax
了解维基语法。只有在您能
改进
该页面的前提下才编辑它。如果您想尝试一些东西,请先到
playground
热身。
媒体文件
#-*- coding:utf-8 -*- import numpy as np import matplotlib.pyplot as plt list_all = open("polar_list").readlines() count = {} count = { 0:0, 2:0, 4:0, 6:0, 8:0, 10:0, 12:0, 14:0, 16:0, 18:0, 20:0, 22:0, 24:0, 26:0 } for each in list_all: period = int(each.strip()) if period not in count.keys(): count_num = 0 count[period] = count_num elif period in count.keys(): count_num = count[period] + 1 count[period] = count_num # 绘制极坐标图 theta = np.linspace(2*np.pi, 0, 14, endpoint=False) radii = count.values() print(count) width=-0.5 ax = plt.subplot(111,projection='polar') plt.thetagrids(np.linspace(360, 0, 14, endpoint=False), [0,2,4,6,8,10,12,14,16,18,20,22,24,26]) ax.set_theta_zero_location('N') bars = ax.bar(theta,radii,width=width,bottom=0.0,align="center",alpha=0.5) plt.ylim((0, 60)) plt.show()
保存
预览
取消
编辑摘要
当您选择开始编辑本页,即寓示你同意将你贡献的内容按下列许可协议发布:
CC Attribution-Share Alike 4.0 International
matplot.txt
· 最后更改: 2024/03/18 09:00 由
fengjie
页面工具
显示页面
修订记录
反向链接
回到顶部