Closed
Description
I've found two problems in the documentation of axes
:
- In the docstring of
set_xlim()
andset_ylim()
, it read: "Set the data limits for the xaxis". It should be view limits instead, which is very confusing. - In the docstring of
autoscale_view()
, it should be mentioned that, ifset_xlim()
orset_ylim()
has been called on the same axes before,autoscale_view()
will not work (because_autoscaleXon
would have been set to False by the above two functions) andautoscale()
should be used instead.