本文实例讲述了Python使用matplotlib模块绘制图像并设置标题与坐标轴等信息。分享给大家供大家参考,具体如下:
进行图像绘制有时候需要设定坐标轴以及图像标题等信息,示例代码如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#-*- coding: utf-8 -*-
#!/usr/bin/python
import matplotlib.pyplot as plt
from numpy.random import randn
x = range ( 100 )
y = randn( 100 )
fig = plt.figure()
ax = fig.add_subplot( 1 , 1 , 1 )
ax.plot(x,y, 'k--' )
ax.set_xticks([ 0 , 25 , 50 , 75 , 100 ])
ax.set_xticklabels([ 'one' , 'two' , 'three' , 'four' , 'five' ],rotation = 45 ,fontsize = 'small' )
ax.set_title( 'www.zzvips.com - Demo Figure' )
ax.set_xlabel( 'Time' )
plt.show()
|
运行结果如下:
总结如下:
① ax.set_xticks([0,25,50,75,100])
实现设置坐标标记点;
② ax.set_xticklabels(['one','two','three','four','five'],rotation=45,fontsize= 'small')
在设置的标记点写标记词;其他的参数分别是设置字体的倾斜度以及字体的大小;
③ ax.set_title('Demo Figure')
设置图片的标题;
④ ax.set_xlabel('Time')
设置横轴的名称。
希望本文所述对大家Python程序设计有所帮助。
原文链接:https://blog.csdn.net/grey_csdn/article/details/70667578