|
From: Todamont <re...@un...> - 2013-01-27 08:54:07
|
for the record I had to put the buffer on the set_limit commands, not the "extent" of the image, like so: priceDiff = max(price)-min(price) diffQuant = priceDiff / 4 minQuant = min(price)-diffQuant maxQuant = max(price)+diffQuant pl.set_ylim([minQuant,maxQuant]) and also include: pl.set_xlim([min(date),max(date)]) to get it working just right. Just for posterity. Thanks again~ -- View this message in context: http://matplotlib.1069221.n5.nabble.com/Matplotlib-INSISTS-on-using-scientific-notation-how-do-I-make-it-STOP-tp40320p40329.html Sent from the matplotlib - users mailing list archive at Nabble.com. |