4
下面的代碼創建一個帶有白點的散點圖。如何在不重新繪製整個圖形的情況下刪除此點?用matplotlib去除散點圖中的點
g = Figure(figsize=(5,4), dpi=60);
b = g.add_subplot(111)
b.plot(x,y,'bo') # creates a blue dot
b.plot(x,y,'wo') # ovverrides the blue dot with a white dot (but the black circle around it remains)
我不明白你想達到什麼目的。你創建了白點,你爲什麼要刪除它? – Djizeus
因爲我不再需要它了(在進一步計算之後)。它將被更好的結果取代。 – Nickpick