第一课--绘制简单的折线图
作者:互联网
''' 绘制简单的折线图 ''' import matplotlib.pyplot as plt from matplotlib.font_manager import FontProperties # 校正图形 input_value = [1, 2, 3, 4, 5, 6] # 数据值 lists = [1, 4, 22, 66, 88, 77] # linewidth:此参数是加粗线条 plt.plot(input_value, lists, linewidth=3) ''' 命名成中文 ''' font = FontProperties(fname='C:\Windows\Fonts\simsun.ttc') # 给图标命名,横竖坐标命名 plt.title('工资表', fontproperties=font) plt.xlabel('月份', fontsize=18, fontproperties=font) plt.ylabel('工资', fontproperties=font) # 设置刻度的大小 plt.tick_params(labelsize=14) plt.show()
标签:linewidth,plt,FontProperties,第一课,fontproperties,折线图,import,font,绘制 来源: https://blog.csdn.net/weixin_36691991/article/details/100107290