PyAutoPlot Functions
Auto plot
This method produces:
1. Detailed analysis summary as a text-based plot.
2. Numeric visualizations: Histograms, Boxplots, and Pairwise Scatter Matrix.
3. Categorical visualizations: Enhanced Bar Plots and Pie Charts.
4. Time-series visualizations: Line and Stacked Area Plots.
Parameters:
output_file (str, optional): Base filename for saving plots. Default is None (no saving).
theme (str, optional): Plot theme ("light", "dark", or a custom dictionary). Default is "light".
excludes (list, optional): Sections to exclude from plotting, e.g., ["histograms"]. Default is None.
**kwargs: Additional keyword arguments passed to plot methods.
Examples:
autoplot.auto_plot(output_file="dataset_output", theme="dark", excludes=["pie_charts"])Function arguments:
Plot
Last updated