Matplotlib: How to set number of ticks on an axis?

2006-03-30 Thread Caleb Hattingh
Hi I tried several Google searches to no avail. I read through pretty much most of the online docs at the matplotlib sourceforge site, but didn't find what I was looking for. I went through the axis.py and ticker.py code today, trying to find out how to set the number of points (ticks) on an

Re: Matplotlib: How to set number of ticks on an axis?

2006-03-30 Thread John Hunter
Caleb == Caleb Hattingh [EMAIL PROTECTED] writes: Caleb It seems that the locater() classes are where I should Caleb look, and there seem to be some defaults in ticker.py: Caleb class AutoLocator(MaxNLocator): def __init__(self): Caleb MaxNLocator.__init__(self, nbins=9,

Re: Matplotlib: How to set number of ticks on an axis?

2006-03-30 Thread Caleb Hattingh
John, Thank you. Caleb -- http://mail.python.org/mailman/listinfo/python-list