解读:#11_5用折线图绘制正弦和余弦曲线,以及其它显示汉字方法。 import numpy as np import matplotlib . pyplot as plt import matplotlib . fontmanagerasm #使用关键参数 fname 导入字体文件(华文楷体) myfont = fm . FontProperties ( fname = r ' C :\ Windows \ Fonts \ STKAITI . ttf ') x = np . arange (0.0,2.0* np . pi +0.01,0.01) yl = np . sin ( x ) y2= np . cos ( x ) plt . plot ( x , yl , label ='正弦') plt . plot ( x ,y2, label ='余弦') #在0-360度范围,每隔30度设置1个刻度;设置相应的字符串刻度 xt = np . arange (0.0,2.0* np . pi + np . pi /12, np . pi /6) xts =['(}度'. format ( i ) for i in range (0,390,30)] # fontproperties 表示所用字体, rotation 表示刻度标识旋转角度(45度) plt . xticks ( xt , xts , fontproperties - myfont , rotation =45) plt . xlabel (' x ﹣变量', fontproperties = myfont , fontsize =18) plt . ylabel (' y ﹣正弦余弦函数值', fontproperties =' simsun ', fontsize =18)#宋体 plt . title (' sin - cos 函数图像', fontproperties =' STLITI ', fontsize =24)#隶书 plt . legend ( prop - myfont ) #图例选择字体用 prop 关键字 plt . gridO plt . tight _ layout ) plt . show (0 #自变量取值要密,才能成曲线#计算正弦函数值 #紧凑布局,能完整显示图形
时间: 2024-03-29 07:41:50 浏览: 155
python使用matplotlib绘制折线图的示例代码
这段代码是用于绘制正弦和余弦函数的折线图。首先,通过导入 numpy 和 pyplot 模块,并使用 fontmanager 模块中的 FontProperties 类导入字体文件(华文楷体),定义了 x 的取值范围,并计算出 yl 和 y2 的值。接着,通过 plot 函数将 x 和 yl、y2 绘制成折线图,并设置了标签 label 和图例 legend。然后,通过 arange 函数设置 x 轴的刻度范围和相应的字符串刻度,并使用 format 函数生成刻度字符串。接下来,使用 xticks 函数将刻度值和字符串刻度代替数值刻度,并设置刻度字体和旋转角度。通过 xlabel 和 ylabel 函数设置 x 轴和 y 轴的标签和字体大小,通过 title 函数设置标题和字体大小。最后,通过 legend 函数选择字体,并通过 grid 函数添加网格线。tight_layout 函数可以使图形布局更加紧凑,使得图形能够完整显示。图例选择字体用 prop 关键字。
阅读全文