How can I plot a single point in matplot python

前端 未结 1 1383
死守一世寂寞
死守一世寂寞 2021-02-11 22:41

I\'d like to plot a single point on my graph but it seems like they all need to plot as either a list or equation.

I need to plot like ax.plot(x, y) and a dot will be ap

1条回答
  •  一生所求
    2021-02-11 23:03

    This worked for me:

    plt.plot(105,200,'ro') 
    

    0 讨论(0)
提交回复
热议问题