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
Installation
pip install pyautoplotExample 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