I have a pandas dataframe with three columns and I am plotting each column separately using the following code:
data.plot(y='value')
Which generates a figure like this one:
What I need is a subset of these values and not all of them. For example, I want to plot values at rows 500 to 1000 and not from 0 to 3500. Any idea how I can tell the plot function to only pick those?
Thanks


