matplotlib setting zh-hans

Posted jiujue

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了matplotlib setting zh-hans相关的知识,希望对你有一定的参考价值。

 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的主要内容,如果未能解决你的问题,请参考以下文章

python使用matplotlib可视化自定义设置轴刻度标签字体的大小( setting axis ticks size in matplotlib)

Django中的中英文切换

python使用matplotlib可视化自定义设置X轴刻度标签字体的大小( setting axis ticks size in matplotlib x axis)

python使用matplotlib可视化为X轴设置轴标签位置及其对应的标签文本(set label locations and corresponding labels in matplotlib

如何使用 set_radius 设置 Matplotlib RadioButton 半径?

matplotlib 中带有散点图和使用 set_offsets 的动画:图形的自动缩放不起作用