I have some data plotted which includes some limits on each subplot:
Both axes have the limits, but since the data fits so nicely within the limits on the second plot, the limits themselves set the boudaries for the y-axis, making them invisible.
To make them visible, I could do something like this:
axes.set_ylim(1.1*lowerLimit,1.1*upperLimit)
where lowerLimit and upperLimit are the data used to generate the limits in the first place, but I am wondering if matplotlib has a mechanism to tell it to not be so zealous in it's automatic setting of the limits. The solution I have now also has the limitation that if the data deviates from the boundaries, it risks going outside the lines, so I searched for a complement to set_ylim() which would tell me what the limits are, somehting like get_ylim() but it does not seem to exist in the documentation.
Thanks for your help.
get_ylim()and it worked, so I was able to scale up the limits and re-apply them withset_ylim()so I have a decent workaround for now, but it would be nice if I there were a better way. I suppose I could write a little function that would do this to any set of axes I passed to it. – 2NinerRomeo Jun 3 '11 at 17:45