PyAutoPlot Package Documentation

Package documentation for PyAutoPlot. PyAutoPlot is an open-source Python library designed to simplify dataset analysis by generating helpful detailed plots using matplotlib.

Changelog

  • 1.0.2 (Latest): Performance and other improvements, along with better error handling.

  • 1.0.1: Added package dependencies to PyAutoPlot.

  • 1.0.0: Initial release.

Installation

You can install PyAutoPlot using PyPi, please make sure that you are using Python 3.6 or later before installing PyAutoPlot:

pip install pyautoplot
circle-exclamation

Example Usage

AutoPlot

from pyautoplot import AutoPlot

# Initialize with a CSV file
plotter = AutoPlot("path/to/dataset.csv")

# Automatically analyze and plot
plotter.auto_plot(output_file='test', theme="dark", color='orange', excludes=['detailed_analysis'])

Customization

Last updated