How can I plot a single point in matplot python

前端 未结 1 1382
死守一世寂寞
死守一世寂寞 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)
提交回复
热议问题