要去掉Rectangle函數繪制的邊框,可以通過設置邊框的顏色為透明來實現。具體步驟如下:
import matplotlib.pyplot as plt
rect = plt.Rectangle((x, y), width, height, edgecolor='none')
plt.gca().add_patch(rect)
plt.show()
完整代碼示例:
import matplotlib.pyplot as plt
x = 0 # 矩形左下角 x 坐標
y = 0 # 矩形左下角 y 坐標
width = 5 # 矩形寬度
height = 3 # 矩形高度
rect = plt.Rectangle((x, y), width, height, edgecolor='none')
plt.gca().add_patch(rect)
plt.show()
這樣就可以繪制一個沒有邊框的矩形圖形。