Reputation: 641
What I expect is like this:
What I get is this:
How to show all the marker completely without extending ax?
People have given solution which extends ax(https://stackoverflow.com/questions/16136748/last-graph-marker-in-matplotlib-not-showing-fully#=)? Is this the only way?
Upvotes: 3
Views: 258
Reputation: 78
Have you tried turning off the clipping? Try
plt.plot(x, y, 'o', clip_on=False)
Upvotes: 6