I’m guessing this was a feature added after this answer was accepted in 2013; DataFrame.plot() now exposes a ylim
parameter that sets the y axis limits:
df.plot(ylim=(0,200))
See pandas documentation for details.
I’m guessing this was a feature added after this answer was accepted in 2013; DataFrame.plot() now exposes a ylim
parameter that sets the y axis limits:
df.plot(ylim=(0,200))
See pandas documentation for details.