PyAutoPlot Functions
Available functions:
AutoPlot.
auto_plot
(output_file=None, theme="light", excludes=None, **kwargs)
: Automatically generate plots based on a given dataset.AutoPlot.
plot
(plot_type, x=None, y=None, **kwargs)
: Manually plot data from your dataset.
Auto plot
Automatically generate plots based on a given dataset.
Function arguments:
output_file
: The output file, and format (optional). E.g. output.png
will result in a plot with the prefix output
and the format png
.
theme
: Either light
or dark
, else defaults to light
. You can also pass in a custom RCParam dictionary for custom themes.
excludes
: A list of plots to exclude. Available plots are: detailed_analysis
, numeric
, categorical
, pairwise_scatter
, pie_charts
, line_plots
, and stacked_area
.
**kwargs
: Other supported keyword arguments for matplotlib
. E.g. color='orange'
.
Plot
Manually create a plot based on data within your dataset.
Last updated
Was this helpful?