I have a pandas framework with three columns, and I draw each column separately using the following code:
data.plot(y='value')
Which generates a figure like this:

I need a subset of these values, not all of them. For example, I want to build values ββin rows from 500 to 1000, and not from 0 to 3500. Any idea how I can say that the graph function only selects them?
thanks
python pandas plot
ahajib
source share