ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

plt.subplot()和plt.subplot()

2022-04-14 17:02:50  阅读:198  来源: 互联网

标签:subplot plot plt ax1 fig np


点击查看代码
# subplot创建单个子图
# subplot(nrows, ncols, sharex, sharey, subplot_kw, **fig_kw)
# nrows : subplot的行数
# ncols : subplot的列数
# sharex : 所有subplot应该使用相同的X轴刻度(调节xlim将会影响所有subplot
# sharey : 所有subplot应该使用相同的Y轴刻度(调节ylim将会影响所有subplot
# subplot_kw : 用于创建各subplot的关键字字典
# **fig_kw : 创建figure时的其他关键字,如plt.subplots(2, 2, figsize=(8, 6))

import numpy as np
import matplotlib.pyplot as plt

x = np.arange(0, 100)
# 作图1
plt.subplot(221)    # 第一个参数 2 表示行数,第二个参数 2 表示列数,第三个参数 1 表示你正在绘制图的位置。
# plt.subplot(2, 2, 1)  # 和前面这个是一样的
plt.plot(x, x)

# 作图2
plt.subplot(222)
plt.plot(x, -x)

# 作图3
plt.subplot(223)
plt.plot(x, x ** 2)
plt.grid(color='r', linestyle='--', linewidth=1, alpha=0.3)

# 作图4
plt.subplot(224)
plt.plot(x, np.log(x))

plt.show()

点击查看代码
import numpy as np
import matplotlib.pyplot as plt

# subplots创建多个子图
x = np.arange(0, 100)
# 划分子图
fig, axes = plt.subplots(2, 2)
ax1 = axes[0, 0]
ax2 = axes[0, 1]
ax3 = axes[1, 0]
ax4 = axes[1, 1]

# 作图1
ax1.plot(x, x)
# 作图2
ax2.plot(x, x)
# 作图3
ax3.plot(x, x ** 2)
ax3.grid(color='r', linestyle='--', linewidth=1, alpha=0.3)
# 作图4
ax4.plot(x, np.log(x))

plt.show()

点击查看代码
import numpy as np
import matplotlib.pyplot as plt

# add_subplot新增子图
x = np.arange(0, 100)
# 新建figure对象
fig = plt.figure()
# 新建子图1
ax1 = fig.add_subplot(2, 2, 1)
ax1.plot(x, x)
# 新建子图3
ax3 = fig.add_subplot(2, 2, 3)
ax3.plot(x, x ** 2)
ax3.grid(color='r', linestyle='--', linewidth=1, alpha=0.3)

plt.show()

点击查看代码
import numpy as np
import matplotlib.pyplot as plt

#新建figure对象
fig = plt.figure()

#定义数据
x = [1, 2, 3, 4, 5, 6, 7]
y = [1, 3, 4, 2, 5, 8, 6]

#新建区域ax1
#figure的百分比,从figure 10%的位置开始绘制,宽高是figure的80%
left, bottom, width, height = 0.1, 0.1, 0.8, 0.8
#获得绘制的句柄
ax1 = fig.add_axes([left, bottom, width, height])
ax1.plot(x, y, 'r')
ax1.set_title('area1')


#新增区域ax2,嵌套在ax1内
left, bottom, width, height = 0.2, 0.6, 0.25, 0.25
#获得绘制的句柄
ax2 = fig.add_axes([left, bottom, width, height])
ax2.plot(x, y, 'b')
ax2.set_title('area2')
plt.show()

标签:subplot,plot,plt,ax1,fig,np
来源: https://www.cnblogs.com/LingZhu927045556/p/16145450.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有