1. 首页
  2. 数据库
  3. 其它
  4. matplotilb中figax = plt.subplots()的使用

matplotilb中figax = plt.subplots()的使用

上传者: 2020-12-23 03:55:27上传 PDF文件 64.95KB 热度 13次
在用matplotlib绘制图形时,我经常要绘制子图,此时我们就可以使用函数 plt.subplots() fig,ax = plt.subplots()的意思建立一个fig对象和建立一个axis对象,当我绘制2*2的个子图时候我们需要 #建立一个fig对象和一个axis对象,figsize设置对象的大小 fig,ax = plt.subplots(2,2,figsize=(9,25)) #选定第2个子图 ax1 = plt.subplot(221) ax1.scatter(x1,y1) #选定第2个子图 ax1 = plt.subplot(222) ax1.scatter(x2,y2) #
用户评论