ในการเพิ่มกราฟต่างๆ (เป็นส่วนแทรก) ในกราฟ Python อื่น เราสามารถทำตามขั้นตอนต่อไปนี้ -
-
สร้าง x และ ย จุดข้อมูลโดยใช้ numpy
-
การใช้ แผนย่อย() เมธอด สร้างร่างและชุดแผนย่อย เช่น fig และ ขวาน .
-
ในการสร้างแกนใหม่ เพิ่ม แกน กับตัวเลขที่มีอยู่ (ขั้นตอนที่ 2).
-
พล็อต x และ ย บนแกน (ขั้นตอนที่ 2).
-
พล็อต x และ ย บนแกนใหม่ (ขั้นตอนที่ 3).
-
หากต้องการแสดงรูป ให้ใช้ show() วิธีการ
ตัวอย่าง
import numpy as np from matplotlib import pyplot as plt plt.rcParams["figure.figsize"] = [7.00, 3.50] plt.rcParams["figure.autolayout"] = True x = np.linspace(-1, 1, 100) y = np.sin(x) fig, ax = plt.subplots() left, bottom, width, height = [.30, 0.6, 0.2, 0.25] ax_new = fig.add_axes([left, bottom, width, height]) ax.plot(x, y, color='red') ax_new.plot(x, y, color='green') plt.show()
ผลลัพธ์