I have graph and would like to rescale the x-axis ticks by a factor of 10. The graph is plotted by using two columns in a dataframe. Right now, the x-axis ranges from 0.5 to 1.0. I would like to multiply the ticks by a factor of 10. Thus, the x-axis shall display 5 to 10 without messing up the data or the graph.
plt.figure(dpi=150)
plt.scatter(vs['Global-Normalised Sentiment Index'], vs['Global-ERSA_Score'])
sns.despine()
plt.grid(False)
plt.xlim(0.5,1.0)
plt.ylim(10,100)
plt.show()
Thanks in advance! Any help is appreciated!!!