matplotlib.pyplot.figure()与matplotlib.figure()的区别:
相同点:
两者都有add_subplot()方法,调用方法也一致
不同点:
add_subplot()按grid添加坐标
add_axes()按任意位置添加坐标
matplotlib.pyplot 是对artist的类matlib方式调用的封装。
更细致的微粒操作,需要从artist直接获取。
原文:http://www.cnblogs.com/midforest/p/4984179.html