matplotlib is a excellent tool for plotting chart. It is very easily to install into window environment. I am using python 2.6 in Window 7.
1) Download numpy
http://sourceforge.net/projects/numpy/files/NumPy/1.5.1/
binary: numpy-1.5.1-win32-superpack-python2.6.exe
2) Download matplotlib 1.0.1
http://sourceforge.net/projects/matplotlib/files/matplotlib/matplotlib-1.0.1/
matplotlib-1.0.1.win32-py2.6.exe
3) Installation
Execute: numpy-1.5.1-win32-superpack-python2.6.exe
Execute: matplotlib-1.0.1.win32-py2.6.exe
4) Testing
start python console and typo in following:
from pylab import *
plot(range(10))
show()
then you should see a new window with a line chart like this:





Recent Comments