小白Python学习成绩雷达图
Posted serene-zou
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小白Python学习成绩雷达图相关的知识,希望对你有一定的参考价值。
1 import numpy as np 2 import matplotlib.pyplot as plt 3 import matplotlib 4 matplotlib.rcParams[‘font.family‘]=‘SimHei‘ 5 matplotlib.rcParams[‘font.sans-serif‘]=[‘SimHei‘] 6 labels=np.array([‘综合‘,‘第一周‘,‘第二周‘,‘第三周‘,‘第四周‘,‘第五周‘]) 7 nAttr=6 8 Python=np.array([97,95,95,95,100,100]) 9 angles=np.linspace(0,2*np.pi,nAttr,endpoint=False) 10 Python=np.concatenate((Python,[Python[0]])) 11 angles=np.concatenate((angles,[angles[0]])) 12 fig=plt.figure(facecolor="white") 13 plt.subplot(111,polar=True) 14 plt.plot(angles,Python,‘bo-‘,color=‘g‘,linewidth=2) 15 plt.fill(angles,Python,facecolor=‘g‘,alpha=0.2) 16 plt.thetagrids(angles*180/np.pi,labels) 17 plt.figtext(0.52,0.95,‘ZYH的成绩表‘,ha=‘center‘) 18 plt.grid(True) 19 plt.savefig(‘ZYH.JPG‘) 20 plt.show()
以上是关于小白Python学习成绩雷达图的主要内容,如果未能解决你的问题,请参考以下文章