python中如何畫圖中圖

import numpy as np

import matplotlib.pyplot as plt

#新建figure

fig = plt.figure()

#定義數據

x = [1, 2, 3, 4, 5, 6, 7]

y = [1, 7, 15, 24, 30, 50, 55]

#新建區域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內,看一看圖中圖是什麼樣,這就是與subplot的區別

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()

在這裏插入圖片描述

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章