galpy.util.bovy_plot ==================== .. WARNING:: Importing ``galpy.util.bovy_plot`` (or having it be imported by other ``galpy`` routines) with ``seaborn`` installed may change the ``seaborn`` plot style. If you don't like this, set the configuration parameter ``seaborn-plotting-defaults`` to False in the :ref:`configuration file ` 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)