.. _pylab_examples-polar_scatter:

pylab_examples example code: polar_scatter.py
=============================================



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

::

    #!/usr/bin/env python
    # a polar scatter plot; size increases radially in this example and
    # color increases with angle (just to verify the symbols are being
    # scattered correctlu).  In a real example, this would be wasting
    # dimensionlaity of the plot
    from pylab import *
    
    N = 150
    r = 2*rand(N)
    theta = 2*pi*rand(N)
    area = 200*r**2*rand(N)
    colors = theta
    ax = subplot(111, polar=True)
    c = scatter(theta, r, c=colors, s=area)
    c.set_alpha(0.75)
    
    
    show()
    

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