Learn more  » Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

agriconnect / pandas   python

Repository URL to install this package:

/ plotting / __init__.py

"""
Plotting api
"""

# flake8: noqa

from pandas.plotting._misc import (scatter_matrix, radviz,
                                   andrews_curves, bootstrap_plot,
                                   parallel_coordinates, lag_plot,
                                   autocorrelation_plot)
from pandas.plotting._core import boxplot
from pandas.plotting._style import plot_params
from pandas.plotting._tools import table
try:
    from pandas.plotting._converter import (
        register as register_matplotlib_converters)
    from pandas.plotting._converter import (
        deregister as deregister_matplotlib_converters)
except ImportError:
    pass