Graphs¶
- dataprofiler.reports.graphs.plot_histograms(profiler, columns=None)¶
Take a input of StructuredProfiler class and a list of specified column names and then plots the histograms of those that are int or float columns.
- Parameters
profiler (StructuredProfiler) – StructuredProfiler variable
columns (list) – list of column names to be plotted
- Returns
returns fig
- Return type
fig
- dataprofiler.reports.graphs.plot_col_histogram(data_type_profiler, ax=None, title=None)¶
Take a input of a Int or Float Column and plots the histogram
- Parameters
data_type_profiler (Union[IntColumn, FloatColumn]) – the Int or Float column we pass in
ax (list) – ax as in seaborn ax
title (str) – name of a individual histogram
- Returns
ax