import matplotlib.pyplot as plt
import numpy as np
# 生成 x, y 座標軸數據
x = np.linspace(0, 10, 100)
y = np.sin(x)
# 讀取背景圖
img = plt.imread(‘background_image.png’)
# 設置圖片大小和座標軸範圍
fig, ax = plt.subplots(figsize=(8, 6))
ax.set_xlim([0, 10])
ax.set_ylim([-1.2, 1.2])
# 繪製背景圖
ax.imshow(img, extent=[0, 10, -1.2, 1.2], aspect=’auto’, alpha=0.5)
# 繪製數據
ax.plot(x, y)
# 顯示圖形
plt.show()
![Python: matplotlib繪製出的圖表如何插入背景圖? img = plt.imread('background_image.png') ; ax.imshow(img, extent=[0, 10, -1.2, 1.2], aspect='auto', alpha=0.5) - 儲蓄保險王](https://savingking.com.tw/wp-content/uploads/2023/02/20230216183536_29.png)
輸出:
![Python: matplotlib繪製出的圖表如何插入背景圖? img = plt.imread('background_image.png') ; ax.imshow(img, extent=[0, 10, -1.2, 1.2], aspect='auto', alpha=0.5) - 儲蓄保險王](https://savingking.com.tw/wp-content/uploads/2023/02/20230216183434_51.png)
推薦hahow線上學習python: https://igrape.net/30afN



![Python TQC考題810 最大值與最小值之差,L=[eval(i) for i in s.split()] Python TQC考題810 最大值與最小值之差,L=[eval(i) for i in s.split()]](https://i1.wp.com/savingking.com.tw/wp-content/uploads/2022/05/20220507094526_36.png?quality=90&zoom=2&ssl=1&resize=350%2C233)
![Word短篇文件編輯,TQC考題110:重點摘要與評量, \[(*)\] 萬用字元,格式>醒目提示*2次=非醒目提示 Word短篇文件編輯,TQC考題110:重點摘要與評量, \[(*)\] 萬用字元,格式>醒目提示*2次=非醒目提示](https://i0.wp.com/savingking.com.tw/wp-content/uploads/2022/03/20220322172253_75.png?quality=90&zoom=2&ssl=1&resize=350%2C233)





近期留言