码迷,mamicode.com
首页 > 其他好文 > 详细

matplotlib setting zh-hans

时间:2019-08-04 19:59:57      阅读:105      评论:0      收藏:0      [点我收藏+]

标签:class   rand   setting   rop   otl   show   bsp   mail   The   

 1 from matplotlib import pyplot as plt
 2 from matplotlib import font_manager
 3 
 4 import random
 5 #                             you font famaily location
 6 font_pro = font_manager.FontProperties(fname=C:\Windows\Fonts\SIMYOU.TTF)
 7 
 8 
 9 x=range(0,12,)
10 
11 y=[random.randint(10,40) for it in range(0, 12) ]
12 
13 xlabels=[第{}次.format(i) for i in range(12)]
14 #            add the kwarg 
15 plt.xticks(x,xlabels,fontproperties=font_pro)
16 
17 plt.plot(x,y)
18 plt.show()

 

matplotlib setting zh-hans

标签:class   rand   setting   rop   otl   show   bsp   mail   The   

原文地址:https://www.cnblogs.com/jiujue/p/11299035.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!