set axis range for matplotlib figure
July 6th, 2011 by Lawrence David
to set the range of the x or y axis in a matplotlib figure:
import pylab as pl
pl.xlim([day_min,day_max])
pl.ylim([day_min,day_max])
July 6th, 2011 by Lawrence David
to set the range of the x or y axis in a matplotlib figure:
import pylab as pl
pl.xlim([day_min,day_max])
pl.ylim([day_min,day_max])