导入模块 import matplotlib as mlt
import matplotlib.pyplot as plt
开头使用魔法命令 matplotlib
Using matplotlib backend: TkAgg
plt.draw()可以强制更新
%matplotlib notebook
or %matplotlib inline
fig = plt.figure()
fig.savefig('my_fgure.png')
保存时不需要用.show()fig.canvas.get_supported_filetypes()
以下是系统支持的具体格式
{
'eps': 'Encapsulated Postscript',
'jpg': 'Joint Photographic Experts Group',
'jpeg': 'Joint Photographic Experts Group',
'pdf': 'Portable Document Format',
'pgf': 'PGF code for LaTeX',
'png': 'Portable Network Graphics',
'ps': 'Postscript',
'raw': 'Raw RGBA bitmap',
'rgba': 'Raw RGBA bitmap',
'svg': 'Scalable Vector Graphics',
'svgz': 'Scalable Vector Graphics',
'tif': 'Tagged Image File Format',
'tiff': 'Tagged Image File Format'}
#先创建图形网络
#ax是包含两个Axes对象的数组
fig, ax = plt.subplots(2)
# 在每个对象上调用plot()方法
ax[0].plot(x, np.sin(x))
ax[1].plot(x, np.sin(x))
#先需要创建一个图形fig 和 一个坐标轴 ax
fig = plt.figure() # 装图表的容器
ax = plt.axes() #带有刻度和标签的矩形
x = np.linspace(0, 10, 1000)
"""
np.linspace(start, stop, num, endpoint, retstep, dtype) 复习
参数分析:
start:开始的数;
stop:停止的数(根据endpoint决定是开是闭);
num:数量;
endpoint:又开还是又闭;
retstep:显示出数据之间的间隔
dtype:数组类型
"""
ax.plot(x, np.sin(x))
#使用参数color、linestyle
ax.plot(x,np.sin(x),linestyle="",color="")
"""
参数分析:
linestyle=" " 可以选择--\-\-.\:
color=" " 可以输入各种颜色名称:
"""
#还可以简写成以下形式:
"""
--c\-g\-.k\:r
"""
ax.plot(x,np.sin(x),"--g")
# 注: 下面的 # 都表示重点内容
ax = plt.axes()
"""
在创建对象之后才可以设置上下限
也有其他方式,但下面这个方式能够一行代码解决
"""
plt.axis([x下限,x上限,y下限,y上限]) 上下限可逆→坐标轴方向可以反的
plt.axis("tight") 不留空白
plt.axis("equal") x与y相等
+++
plt.title("加标题内容") 这里不支持用对象名
plt.xlabel(" ") x坐标名 这里不支持用对象名
plt.ylabel(" ") y坐标名 这里不支持用对象名
plt.legend() 创建图例
"""
但是也有使用对象操作的方法
ax.set_xlabel(" ")
ax.set_ylabel(" ")
ax.set_xlim(" ")
ax.set_ylim(" ")
ax.set_title(" ")
"""
文章摘自书本《Python 数据科学手册》 初次发表,如有纰漏,感谢大家批评指正。