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 打造高容錯搜尋引擎:BM25、Bigram 與difflib自動糾錯實戰; from rank_bm25 import BM25Okapi ; bm25 = BM25Okapi(corpus_tokens) #corpus_tokens: list[list[str]] Python 打造高容錯搜尋引擎:BM25、Bigram 與difflib自動糾錯實戰; from rank_bm25 import BM25Okapi ; bm25 = BM25Okapi(corpus_tokens) #corpus_tokens: list[list[str]]](https://i0.wp.com/savingking.com.tw/wp-content/uploads/2026/02/20260209150527_0_a24c17.png?quality=90&zoom=2&ssl=1&resize=350%2C233)




![Python: 如何將pandas.DataFrame從寬資料轉為長資料? df_melt = pd.melt(df, id_vars=[‘name’, ‘gender’], var_name=’time’, value_name=’score’) ; seaborn繪圖 Python: 如何將pandas.DataFrame從寬資料轉為長資料? df_melt = pd.melt(df, id_vars=[‘name’, ‘gender’], var_name=’time’, value_name=’score’) ; seaborn繪圖](https://i2.wp.com/savingking.com.tw/wp-content/uploads/2023/03/20230302152215_95.png?quality=90&zoom=2&ssl=1&resize=350%2C233)



近期留言