I'm plotting a seaborn plot, for example:
sns.pointplot (x=[1,2,3,10], y=[2,3,4,5])
How can I make the X ticks to have spcaing that represents their values? 10 should be further apart but the spacing is equal.
ax.xaxis.set_ticks([1,2,3,10]) does not work