.. _pylab_examples-coords_report:

pylab_examples example code: coords_report.py
=============================================



.. plot:: /media/TOSHI/temp/numpy_scipy_matplotlib/matplotlib/matplotlib-1.1.1~rc2/doc/mpl_examples/pylab_examples/coords_report.py

::

    #!/usr/bin/env python
    
    # override the default reporting of coords
    
    from pylab import *
    
    def millions(x):
        return '$%1.1fM' % (x*1e-6)
    
    x =     rand(20)
    y =     1e7*rand(20)
    
    ax = subplot(111)
    ax.fmt_ydata = millions
    plot(x, y, 'o')
    
    show()
    
    

Keywords: python, matplotlib, pylab, example, codex (see :ref:`how-to-search-examples`)