Possible Duplicate:
Python, Matplotlib, subplot: How to set the axis range?
I would like to specify the scale of the x-axis for my scatter plot similar to excel.
For example, I feed in the x axis values as follows:
x_values = [10, 20, 30, 40, 50, 60, 70, 80, 90, 100]
However, only the numbers with an even 1st digit appear.
Is there a way to make it such that all numbers appear on the x-axis?
Thanks,
Parth