plotting markers on top of axes

后端 未结 3 555
生来不讨喜
生来不讨喜 2021-02-08 01:15

I am tying to make a (x,y) scatter plot using numpy. Right now the axes start from (0,0) and extend to align with the range of the data. I need to plot two points which lie on

3条回答
  •  余生分开走
    2021-02-08 01:35

    You can turn off the clip flag of the line object created by plt.plot.

    import numpy as np
    import matplotlib.pyplot as plt
    x = np.array([0,1,2,3,4,5,6])
    y = np.array([0,2,0,4.5,0.5,2,3])
    
    line = plt.plot(x,y,'o')[0]
    line.set_clip_on(False)
    plt.show()
    

    enter image description here

提交回复
热议问题