url_univariate_summary

url_univariate_summary(data: DataFrame, column: str, fig_height: int = 6, fig_width: int = 12, fontsize: int = 15, color_palette: Optional[str] = None, top_entries: str = 20, interactive: bool = False)

Creates a univariate EDA summary for a provided url column in a pandas DataFrame. The provided column should be a string/object column containing urls.

Parameters
  • data – Dataset to perform EDA on

  • column – A string matching a column in the data

  • fig_height – Height of the plot in inches

  • fig_width – Width of the plot in inches

  • fontsize – Font size of axis and tick labels

  • color_palette – Seaborn color palette to use

  • top_entries – Max number of entries to show for countplots

  • interactive – Whether to display figures and tables in jupyter notebook for interactive use

Returns

Tuple containing matplotlib Figure drawn and summary stats DataFrame