Metadata-Version: 2.1
Name: easy-plot
Version: 0.1.0
Summary: Easy Statistical Visualization
Home-page: https://github.com/zachbateman/easy_plot.git
Author: Zach Bateman
License: MIT
Download-URL: https://github.com/zachbateman/easy_plot/archive/v_0.1.0.tar.gz
Keywords: STATISTICS,VISUALIZATION,SIMPLE,EASY,PLOT
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown
Requires-Dist: matplotlib
Requires-Dist: seaborn
Requires-Dist: pandas

# Easy_Plot

Easy_plot is a Python package built to provide easy and fast production-quality visualizations of statistical data.
Utilizes pandas dataframes as standard format for input data.

# Current Features

  - easy_plot.distribution(df)
    - Plot a "Distribution Plot": a swarmplot alongside a cumulative probability plot.
    - Usage:
        ```sh
        import pandas
        import easy_plot
        df = pandas.read_csv('test.csv')
        easy_plot.distribution(df, bin_col='Weight', result_col='Value')
        ```
    <img src="tests/images/distribution_example.png" width="550px">

  - easy_plot.scatter(df)
    - Plot a scatter plot.
    - Usage:
        ```sh
        import pandas
        import easy_plot
        df = pandas.read_csv('test.csv')
        easy_plot.scatter(df, xvar='Value', yvar='Value_2', sizevar='Weight')
        ```
    <img src="tests/images/scatter_example.png" width="550px">

  - easy_plot.scatter_matrix(df)
    - Plot a matrix of scatter plots.
    - Usage:
        ```sh
        import pandas
        import easy_plot
        df = pandas.read_csv('test.csv')
        easy_plot.scatter_matrix(df)
        ```
    <img src="tests/images/scatter_matrix_example.png" width="550px">

  - easy_plot.heatmap(df)
    - Plot a heatmap.
    - Usage:
        ```sh
        import pandas
        import easy_plot
        df = pandas.read_csv('test.csv')
        easy_plot.heatmap(df)
        ```
    <img src="tests/images/heatmap_example.png" width="550px">


License
----
MIT


