R plots automatically set the x and y limits to put some space between the data and the axes. I was wondering if there is a way for matplotlib to do the same automatically. If not, is there a good formula or 'rule of thumb' for how R sets its axis limits?
|
Looking at
So if we try this out:
We can actually demonstrate that it's +/- 4% of the range on each side:
|
||||
|
|
|
In matplotlib you can achieve this by setting the
However, it doesn't seems, that there is an rc parameter to get this automatically. Update 4/2013 The possibility to add an rc param for the margins is now in matplotlib master (Thanks @tcaswell). So it should work with the next matplotlib release (current release is 1.2.1). |
||||
|
|

