I am currently plotting a series in Ipython notebook .For this I have created a Series and use plot function on the Series for plotting it,but by default the index of Series is available on the X-axis of plot .I want to know how to remove this.
s = Series(np.random.randn(10).cumsum(), index=np.arange(0, 100, 10))
s.plot()