galpy.util.bovy_plot ==================== Various plotting routines: .. toctree:: :maxdepth: 2 bovy_dens2d bovy_end_print bovy_hist bovy_plot bovy_print bovy_text scatterplot ``galpy`` also contains a new matplotlib projection ``'galpolar'`` that can be used when working with older versions of matplotlib like ``'polar'`` to create a polar plot in which the azimuth increases clockwise (like when looking at the Milky Way from the north Galactic pole). In newer versions of matplotlib, this does not work, but the ``'polar'`` projection now supports clockwise azimuths by doing, e.g., >>> ax= pyplot.subplot(111,projection='polar') >>> ax.set_theta_direction(-1)