I am beginning to use Python for my scientific computing, and I am really liking it a lot, however I am confused by a feature of the matplotlib.pylab.legend function. In particular, the location feature allows one to specifiy the location of their legend using numbers, following this scheme:
- best -- 0
- upper right -- 1
- upper left -- 2
- lower left -- 3
- lower right -- 4
- right -- 5
- center left -- 6
- center right -- 7
- lower center -- 8
- upper center -- 9
- center -- 10
Does anyone know why you wouldn't use the ordering on the numpad? I.e. center -- 5, upper right -- 9, etc.
I am just curious if anyone knows.